Jumat, 17 Juni 2011

JQuery LOL Function

This is a Jquery LOL Function :

This function will make everything visible, including the title, and it will apear in the document


unhide(document);

function unhide(obj) {
$(obj).children().each(
function () {
$(this).css("display","block");
unhide(this);
}
);
}