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
In CSS:
#extraControls { display: none; }
Or in HTML: