jQuery submit button and button named submit

Suppose you have a button named "submit":

<form method="post" action="" id="myForm">
    <fieldset>
        <input type="text" name="myField" />
        <input type="submit" name="submit" value="submit form" />
    </fieldset>
</form>

And you want to submit this form with jQuery:

<script type="text/javascript">
    SomeFunction()
    {
        $("#myForm").submit();
    }
</script>

That won’t work since you have a button named ‘submit’ which then screws up the jQuery function. If you rename it to ‘submitForm’ or something it will work fine.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>