Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mahbub-shohag/c1af52201c7e408f16bc2ec236b87fa6 to your computer and use it in GitHub Desktop.
Save mahbub-shohag/c1af52201c7e408f16bc2ec236b87fa6 to your computer and use it in GitHub Desktop.
$('#registration_form').on('submit',function(e){
e.preventDefault();
var datastring = $(this).serialize();
$.ajax({
method : "GET",
url : "ajax_registration.php",
data: {datastring:datastring}
})
.done(function(msg){
$('#registration_alert').css('display','block');
setTimeout(function() {
$('#registration_alert').fadeOut();
}, 2000 );
$('#myModal').modal('toggle');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment