-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.js
71 lines (61 loc) · 2.02 KB
/
main.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
function saveStorage() {
localStorage.clear();
var frms = ['myform', 'myform2'];
$.each(frms, function(i, v) {
$('form[name="' + v + '"] *').filter(':input').each(function(i, inp){
if ($(inp).attr("id")) {
var ptype = $(inp).prop("type");
if (ptype && ptype == "radio" || ptype == "checkbox") {
localStorage.setItem($(inp).attr("id"), $(inp).prop("checked"));
} else {
localStorage.setItem($(inp).attr("id"), $(inp).val());
}
}
});
});
}
function loadStorage() {
$.each(localStorage, function(key, val) {
var ptype = $('#' + key).prop("type");
if (ptype && ptype == "radio" || ptype == "checkbox") {
$('#' + key).prop("checked", val == 'true');
} else {
$('#' + key).val(val);
}
});
}
$(document).ready(function() {
$(".tabs-menu1 a").click(function(event) {
event.preventDefault();
$(this).parent().addClass("current");
$(this).parent().siblings().removeClass("current");
var tab = $(this).attr("href");
$(".tab-content1").not(tab).css("display", "none");
$(tab).fadeIn();
});
$(".tabs-menu2 a").click(function(event) {
event.preventDefault();
$(this).parent().addClass("current");
$(this).parent().siblings().removeClass("current");
var tab = $(this).attr("href");
$(".tab-content2").not(tab).css("display", "none");
$(tab).fadeIn();
});
$(".tabs-menu3 a").click(function(event) {
event.preventDefault();
$(this).parent().addClass("current");
$(this).parent().siblings().removeClass("current");
var tab = $(this).attr("href");
$(".tab-content3").not(tab).css("display", "none");
$(tab).fadeIn();
});
$(".tabs-menu4 a").click(function(event) {
event.preventDefault();
$(this).parent().addClass("current");
$(this).parent().siblings().removeClass("current");
var tab = $(this).attr("href");
$(".tab-content4").not(tab).css("display", "none");
$(tab).fadeIn();
});
loadStorage();
});