
jquery button click - I have created a button in JQuery but the problem is that it's not detecting click. What could be the reason?

There could be any reason of it .. without having look at code we can't say anything. But still i here i am post a correct piece of code to create a button event in JQuery. You can edit it as per your requirement.
In Header
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready( function (){
$("#Button1").click( function(){
alert("button clicked");
});
});
</script>
JQuery HTML Button
<body>
<form id="form1" runat="server">
<div>
<input id="Button1" type="button" value="button" />
</div>
</form>
</body>
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.