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
div.hidden { display: none } $(document).ready(function() { $("div#extraControls").removeClass("hidden"); });