I need to use a "button" element in order to achieve the look I want in css. How can I make this button submit work consistently?

<form method="post">
    <!--lots of form fields here-->
    <button class="button save" id="save" type="submit" onclick="submit()" >Apply Changes</button>
</form>
link|improve this question

It's probably something in your onclick submit() function. Need more code. – Nate B Dec 12 '11 at 17:17
There is no submit() function, that's probably the issue. I was under impression that submit() was a built in function in javascript for form submittal. <button id="save">apply changes</button> seems to work fine, so I'll just use that barring any other suggestions. – RegEdit Dec 12 '11 at 18:15
Nope, no built in functions like that. Just remove it. – Nate B Dec 12 '11 at 18:30
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.