-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.js
35 lines (29 loc) · 811 Bytes
/
form.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
$(document).ready(function(){
$(".bottom2").hide();
$(".bottom3").hide();
$(".next-btn").click(function(){
//$(".bottom").addClass("moveLeft");
$(".bottom").fadeOut("slow", function() {
$(".bottom2").fadeIn("slow");
});
});
$(".next2-btn").click(function(){
$(".bottom2").fadeOut("slow", function() {
$(".bottom3").fadeIn("slow");
});
});
$(".back-btn").click(function(){
$(".bottom2").fadeOut("slow", function() {
$(".bottom").fadeIn("slow");
});
});
$(".back2-btn").click(function(){
$(".bottom3").fadeOut("slow", function() {
$(".bottom2").fadeIn("slow");
});
});
$("#datepicker").datetimepicker({
format:'m/d/Y',
timepicker:false,
});
});