I have a set of elements on a page that where I would like to validate user input. However, the data in these elements is not to be submitted (no postback). Can I do this w/ the jQuery validate plugin? Do the elements have to be in a element anyway?
Thanks
Checkout your submit button, I mean if it is going to the server side (doing a postback) it’s because you have an input type=’submit’, try changing that button to NOT submit.
jQuery works on client-side so it is not running a submit itself, I think you are doing it with the button.
For example:
or
javascript: