vote up 1 vote down star

I'm looking for a good example that shows how to handle (in the controller) a POST onchange (of a input["text"] for example)

Currently when I set my onchange = form[0].submit(); and I watch the action hit the controller, the HTTP verb is still GET for some odd reason. But when I view source the form on the page has the method="POST" ... so what am I doing wrong?

flag

76% accept rate

2 Answers

vote up 1 vote down check

Are you able to make use of an ajax library (jquery, ms, whatever) and set up a post for the call instead?

"The javascript submit() method does not fire the onsubmit event, but bypasses it and directly submits the form. " - http://www.webmasterworld.com/forum91/4047.htm

link|flag
Here's another solution: stackoverflow.com/questions/133925/… – mannish May 21 at 22:26
Now that you mention it, I actually need to do this via XHR - thanks for the secondary post! – Toran Billups May 22 at 0:01
vote up 1 vote down

you should put

return false

at the end of submit event handler function

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.