-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecondpg_tab.js
More file actions
81 lines (48 loc) · 1.88 KB
/
Copy pathsecondpg_tab.js
File metadata and controls
81 lines (48 loc) · 1.88 KB
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
81
$("#taken").on('click',function(){
var allbar1 = document.getElementById('about_container3');
var allbar2 = document.getElementById('about_container5');
allbar1.style.display='none';
allbar2.style.display='none';
this.style.opacity="1.0";
this.style.filter = 'alpha(opacity=100)'; // IE fallback
var element1 = document.getElementById('container3');
element1.style.opacity = "1.0";
element1.style.filter = 'alpha(opacity=100)'; // IE fallback
var element1 = document.getElementById('container4');
element1.style.opacity = "1.0";
element1.style.filter = 'alpha(opacity=100)'; // IE fallback
var element1 = document.getElementById('container5');
element1.style.opacity = "1.0";
element1.style.filter = 'alpha(opacity=100)'; // IE fallback
$.ajax({
url : "secondpg_tab_taken.php",
dataType : "html",
async : false,
type : "post", // post 또는 get
success : function(result){
$("#alloflist").html(result);
}
});
});
$("#basket").on('click',function(){
$.ajax({
url : "secondpg_tab_basket.php",
dataType : "html",
async : false,
type : "post", // post 또는 get
success : function(result){
$("#alloflist").html(result);
}
});
});
$(".search-field").on('click',function(){
$.ajax({
url : "secondpg_tab_search.php",
dataType : "html",
async : false,
type : "post", // post 또는 get
success : function(result){
$("#alloflist").html(result);
}
});
});