-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
80 lines (73 loc) · 2.16 KB
/
script.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
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
77
78
79
80
$( document ).ready(function() {
// Initialize Firebase
var config = {
apiKey: "AIzaSyDvf1BkIw-IZ_NFFd1g_QI6qMLMrVFuXOk",
authDomain: "form-submit-44689.firebaseapp.com",
databaseURL: "https://form-submit-44689.firebaseio.com",
projectId: "form-submit-44689",
storageBucket: "",
messagingSenderId: "559169214737"
};
firebase.initializeApp(config);
// Reference messages collection
var messagesRef = firebase.database().ref('messages');
$( ".button" ).click(function(e) {
e.preventDefault();
var $name = $('#name').val();
var $email = $('#email').val();
var $message = $('#msg').val();
saveMessage($name, $email, $message);
setTimeout(function() {
$("h2").removeClass("hide")
}, 1500);
}
);
function saveMessage(name, email, message){
var newMessageRef = messagesRef.push();
newMessageRef.set({
name: name,
email:email,
message:message
});
}
// Input Lock
$('textarea').blur(function () {
$('#hire textarea').each(function () {
$this = $(this);
if ( this.value != '' ) {
$this.addClass('focused');
$('textarea + label + span').css({'opacity': 1});
}
else {
$this.removeClass('focused');
$('textarea + label + span').css({'opacity': 0});
}
});
});
$('#hire .field:first-child input').blur(function () {
$('#hire .field:first-child input').each(function () {
$this = $(this);
if ( this.value != '' ) {
$this.addClass('focused');
$('.field:first-child input + label + span').css({'opacity': 1});
}
else {
$this.removeClass('focused');
$('.field:first-child input + label + span').css({'opacity': 0});
}
});
});
$('#hire .field:nth-child(2) input').blur(function () {
$('#hire .field:nth-child(2) input').each(function () {
$this = $(this);
if ( this.value != '' ) {
$this.addClass('focused');
$('.field:nth-child(2) input + label + span').css({'opacity': 1});
}
else {
$this.removeClass('focused');
$('.field:nth-child(2) input + label + span').css({'opacity': 0});
}
});
});
});