I am just trying to learn jQuery and I found one problem. I have a toggle effect by which I can hide and show my div. The code is below:
<script type="text/javascript">
$(document).ready(function(){
$("#butShowHideSlow").click(function () {
$("#divShowHideSlow").toggle("slow");
});
});
</script>
<button id="butShowHideSlow">Click Me</button>
<div style="width: 300px; height: 47px; border: solid 1px black; background-color: white; text-align: center;" id="divShowHideSlow">Div that hide and show slowly</div>
Initially my div is there but I want to hide my div initially. I think it's easy but I am new to jQuery so can anyone tell me how can I do this?
Thanks for your support.
