Skip to content

Instantly share code, notes, and snippets.

@RSquaredSoftware
Created April 13, 2014 08:04
Show Gist options
  • Save RSquaredSoftware/10574043 to your computer and use it in GitHub Desktop.
Save RSquaredSoftware/10574043 to your computer and use it in GitHub Desktop.
$.ajax({
type: "POST",
url: "makeLCR.php",
data: $('#LCRform').serialize(),
beforeSend: function() {
$.noConflict();
$.blockUI({
message: '<h1 class="well">Building LCR</h1>'
});
}
})
.done(function(response) {
$.unblockUI();
alert(response);
//location.reload();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment