I\'ve googled around and found many scripts for hiding and showing DIV contents, as a toggle on button click.
But they are work using ID\'s.
I would like to
You could simply use $(".className").hide();
$(".className").hide();
The $(".somthing") do the same as $("#somthing"), except it's for a class instead of an ID.
$(".somthing")
$("#somthing")