I\'m creating a registration form for a client for an event they\'re hosting. The basic user details are submitted to a third-party system (ie name, email etc.) but the rest
You can use jquery.form plugin for submitting form via ajax. Checkout following url: http://jquery.malsup.com/form/
Then in your js script try something like this
var myvalidator = $('#form1').bValidator(optionsGrey);
$('#form1').submit(function(){
if(myvalidator.isValid()){
$(this).unbind('submit').submit();
});