I have a .submit() event set up for form submission. I also have multiple forms on the page, but just one here for this example. I\'d like to know which submi
.submit()
This one worked for me
$('#Form').submit(function(){ var btn= $(this).find("input[type=submit]:focus").val(); alert('you have clicked '+ btn); }