I have some JQuery code that shows or hides a div.
$(\"div#extraControls\").show(); // OR .hide()
I initially want the div to be not visi
#toggleMe //Keep this in your .css file
{
display:none;
visibility:inherit;
background-color:#d2d8c9;
}
Expand Me
///this way u can make a link to act like a button too
//this will be hidden during the page load
//your elements
///if you decide to make it display on a click, follow below:
//make sure u include jquery.js file in ur project
///Now for every alternate click, it shows and hides, but during page load; its hidden.
//Hope this helps you guys ...