UnderZ

Javascript Library.

UnderZ Syntax

With UnderZ you select HTML elements and perform any actions on them.

Basic syntax is: _z(selector).action()

Examples

// hides the current element
_z(this).hide();

//hides all <div> elements
_z("div").hide();

// hides all elements with class="className"
_z(".className").hide();

// hides the element with id="idName"
_z("#idName").hide();