I am using JQuery validation plugin to validate forms in my application. It works well when the button is of type 'submit'. However, I have one form in which I need the data to be submitted using JQuery.Ajax, hence I am using simple <input type='button'>. But then the validation wont work.
Here's the working code-
<head>
<script>
$(document).ready(function(){
$("#some_form").validate({});
});
</script>
</head>
<body>
<form name='some_form' id='some_form'>
<!-- Form Fields -->
<input type='submit' value='Submit'>
</form>
</body>
The above code works, however, when I put this in the code <input type='button' value='Submit'>, it doesn't work.
Does anybody has any idea how to get this working?

submit? – Sachyn Kosare Apr 25 '12 at 7:12