Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a rails application that uses $('form').submit(), however if it fails the validation once and then it is clicked again it completely ignores the validations and generates a routing error. Now, If I use the regular button it does not do this unless the JQuery submit exists with it. Why do you think that is?

Update: JQuery finds the form values looking for anything within the <form> tags.

share|improve this question
how do you get the form values? – apneadiving Aug 23 '11 at 14:08
1  
You really need to expand upon your question I'm afraid. :) – mark Aug 23 '11 at 14:09

1 Answer

up vote 0 down vote accepted

Okay the problem was not related to the JavaScript at all. What was happening is a variable was getting a value of nil causing a routing error for the path. Adding a check for nil and reassigning it if it is fixed it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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