I have the following code in script tag:
$(document).ready(function () {
$('#Button1').click(function () {
$("#loading").show(500000);
});
});
and here is the button and the div tag:
<asp:Button ID="Button1" runat="server" Text="View Summary"
onclick="Button1_Click" />
</p>
<div id="loading">Page is loading...</div>
when I click the button, div tag is not showing up. I have display:none; for div in css..