Jquery click event
- by ram
This is my code
$(document).ready(function () {
$("#Button1").click(showDialog);
});
var showDialog = function () {
/* Something I do here */
}
Here the "Button1" click event fire at first time, after that the event was not firing.
Thanks,
Ram