Skip to content

Instantly share code, notes, and snippets.

@dmozzy
Created April 14, 2012 14:42
Show Gist options
  • Save dmozzy/2384861 to your computer and use it in GitHub Desktop.
Save dmozzy/2384861 to your computer and use it in GitHub Desktop.
Task Edit Submit function
$("form[name='task-edit-form']").submit(function() {
if ($("form[name='task-edit-form']").validate().numberOfInvalids()==0) {
$.post("/task", $("form[name='task-edit-form']").serializeArray(), function(){
$.mobile.changePage($("#task-page"), { transition: "pop", role: "page", reverse: false } );
});
}
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment