Javascript Library.
Commands 0 |
---|
With UnderZ you select HTML elements and perform any actions on them.
Basic syntax is: _z(selector).action()
// 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();