Hello friends I have three div tags on my page..
I am trying to hide two div tags when initial page load
<div id="firstpage">
</div>
<div id="secondpage">
</div>
<div id="thirdpage">
</div>
my script is
<script type="text/javascript>
$(document).ready(function(){
$("#secondpage").hide();
$("#thirdpage").hide();
});
</script>
but I am seeing all my div tags is that something I am doing wrong here?
thanks