So I have a pretty long form that a broke up into two piece with a divs. I'm also using jquery's validate plugin. I have a submit button on the first div, when pressed, it validates the form and if successful moves onto the next form. The problem is the form gets confused on what submit button is actually submitting the entire form. Here's my code: fiddle
I was thinking about changing the first submit to a button and make the click event call the validate but that didn't really work. Does anyone know how I can make it so that the submit button on the second page should submit (post) the entire form? Thanks