blob: bb476df40f0d34175685ed0f5263302946c23a23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/*
* Change Navbar color while scrolling
*/
$(window).scroll(function(){
handleTopNavAnimation();
});
$(window).load(function(){
handleTopNavAnimation();
});
function handleTopNavAnimation() {
var top=$(window).scrollTop();
if($('#home').attr("data") == 'home'){
if(top>10){
$('#site-nav').addClass('navbar-solid');
}
else{
$('#site-nav').removeClass('navbar-solid');
}
}
else{
$('#site-nav').addClass('navbar-solid-other');
$("a").removeAttr("data-scroll");
}
}
/*
* 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
*/
smoothScroll.init();
|