-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent.js
47 lines (37 loc) · 1.08 KB
/
event.js
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
$(document).ready(function() {
$('#contact-form').submit(function(e) {
var name = document.getElementById('inputName')
var email = document.getElementById('inputEmail')
var message = document.getElementById('inputMessage')
alert(name.value)
if (name.value === "" ) {
alertify.error("Please check your entries");
alert("Please check your entries")
return false;
} else {
$.ajax({
method: 'POST',
url: '//formspree.io/zhachi66@gmail.com',
data: $('#contact-form').serialize(),
datatype: 'json'
});
e.preventDefault();
// $(this).get(0).reset();
alertify.success("Message sent");
}
});
});
$("#nav ul li a[href^='#']").on('click', function(e) {
// prevent default anchor click behavior
e.preventDefault();
// store hash
var hash = this.hash;
// animate
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 1000, function(){
// when done, add hash to url
// (default click behaviour)
window.location.hash = hash;
});
});