Jquery button click event not firing
Hi All,I was trying to validate form using jquery but button click event not firing in IE .
Could you please help me to resolve on this issue.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#btnResubmit2").click(function () {
alert('btnResubmit2 Here');
});
});
</script>
HTML code
<asp:Button ID="btnResubmit2" runat="server" Text="Resubmit" onclick="btnResubmit2_Click"/>