Skip to content Skip to sidebar Skip to footer

Why Does Binding A Submit Event With `$("#submitbutton").submit(function(){})` Not Work?

I’m trying to figure out why $('#submitButton').submit(function() {}); is not working. I have this
:
Copy

Then call submit on this id

$( document ).ready(function() {
   $("#myForm").submit(function(){

    });
});

Post a Comment for "Why Does Binding A Submit Event With `$("#submitbutton").submit(function(){})` Not Work?"