-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathYTFullSearch.jsp
111 lines (107 loc) · 2.17 KB
/
YTFullSearch.jsp
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>YTFullSearch</title>
<style type="text/css">
/* the frame*/
#searchCenter{
width: 100%;
}
#searchTabs{
width: 200px;
float:left;
background-color: #EFEFEF;
}
#searchFrame{
margin-left: 200px;
z-index: 2;
position: relative;
}
/*the button */
.button.small {
line-height: 21px;
text-decoration: none;
font-size: 11px;
border-radius: 3px;
text-align: center;
cursor: pointer;
padding-left: 5px;
padding-right: 5px;
margin-right: 5px;
margin-top: 2px;
}
.button.primary {
background-color: #2bb24c;
color: #FFFFFF;
}
.button {
background-color: #F4F4F4;
color: #696969;
display: inline-block;
line-height: 34px;
text-decoration: none;
font-size: 13px;
border-radius: 3px;
text-align: center;
cursor: pointer;
padding-left: 17px;
padding-right: 17px;
margin-right: 10px;
}
</style>
<script src="scripts/jquery-latest.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#searchButton").click(function(){
// alert("TEST");
});
});
</script>
</head>
<body>
<div id="searchCenter">
<div id="searchTabs">Search Part
<input type="text"></input>
<div id="searchButton" class="button primary small" style="float:right; background-color:#F60; margin-top:5px">Search</div>
</div>
<div id="searchFrame"><table>
<tr>
<td>header1</td>
<td>header2</td>
<td>header3</td>
<td>header4</td>
<td>header5</td>
</tr>
<tr>
<td>header1</td>
<td>header2</td>
<td>header3</td>
<td>header4</td>
<td>header5</td>
</tr>
<tr>
<td>header1</td>
<td>header2</td>
<td>header3</td>
<td>header4</td>
<td>header5</td>
</tr>
<tr>
<td>header1</td>
<td>header2</td>
<td>header3</td>
<td>header4</td>
<td>header5</td>
</tr>
<tr>
<td>header1</td>
<td>header2</td>
<td>header3</td>
<td>header4</td>
<td>header5</td>
</tr>
</table></div>
</div>
</body>
</html>