diff options
Diffstat (limited to 'static/website/bootstrap-css/assets/js/main.js')
-rw-r--r-- | static/website/bootstrap-css/assets/js/main.js | 43 |
1 files changed, 1 insertions, 42 deletions
diff --git a/static/website/bootstrap-css/assets/js/main.js b/static/website/bootstrap-css/assets/js/main.js index bb476df..e59e192 100644 --- a/static/website/bootstrap-css/assets/js/main.js +++ b/static/website/bootstrap-css/assets/js/main.js @@ -6,7 +6,7 @@ $(window).scroll(function(){ handleTopNavAnimation(); }); -$(window).load(function(){ +$(window).on("load",function (){ handleTopNavAnimation(); }); @@ -29,47 +29,6 @@ function handleTopNavAnimation() { } /* - * Registration Form -*/ - -$('#registration-form').submit(function(e){ - e.preventDefault(); - - var postForm = { //Fetch form data - 'fname' : $('#registration-form #fname').val(), - 'lname' : $('#registration-form #lname').val(), - 'email' : $('#registration-form #email').val(), - 'cell' : $('#registration-form #cell').val(), - 'address' : $('#registration-form #address').val(), - 'zip' : $('#registration-form #zip').val(), - 'city' : $('#registration-form #city').val(), - 'program' : $('#registration-form #program').val() - }; - - $.ajax({ - type : 'POST', - url : './assets/php/contact.php', - data : postForm, - dataType : 'json', - success : function(data) { - if (data.success) { - $('#registration-msg .alert').html("Registration Successful"); - $('#registration-msg .alert').removeClass("alert-danger"); - $('#registration-msg .alert').addClass("alert-success"); - $('#registration-msg').show(); - } - else - { - $('#registration-msg .alert').html("Registration Failed"); - $('#registration-msg .alert').removeClass("alert-success"); - $('#registration-msg .alert').addClass("alert-danger"); - $('#registration-msg').show(); - } - } - }); -}); - -/* * SmoothScroll */ |