How to check button click event process completed in jquery.
Thanks,
k.Rakesh
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sanjeeb LenkaPosted Jul 25, 2013, 6:52 AM
you can try like this
$(document).ready(function() {
$("#btnSubmit").click(function()
{
alert("button");
});
});
Vignesh KumarPosted Jul 25, 2013, 6:51 AM
$(document).ready(function()
{
$("form").submit(function()
{
var val = $("input[type=submit][clicked=true]").val()
});
$("form input[type=submit]").click(function()
{
$("input[type=submit]", $(this).parents("form")).removeAttr("clicked");
$(this).attr("clicked", "true");
});