-
Notifications
You must be signed in to change notification settings - Fork 18
/
scomp.html
64 lines (61 loc) · 1.73 KB
/
scomp.html
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
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this file,
- You can obtain one at http://mozilla.org/MPL/2.0/. -->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Super Search Comparison</title>
<script src="scomp.js"></script>
<link rel="stylesheet" href="scomp.css" />
</head>
<body>
<h1>Super Search Comparison</h1>
<form>
<table id="scompParams" class="hidden">
<tr>
<td colspan="2">
Common parameters: <br /><input
type="text"
name="common"
id="paramCommon"
class="paramInput"
/>
</td>
</tr>
<tr>
<td>
Specific params for search #1: <br /><input
type="text"
name="p1"
id="paramS1"
class="paramInput"
/>
</td>
<td>
Specific params for search #2: <br /><input
type="text"
name="p2"
id="paramS2"
class="paramInput"
/>
</td>
</tr>
<tr>
<td colspan="2" class="paramSubmit"><input type="submit" /></td>
</tr>
</table>
</form>
<div id="scompResult">
<p id="dataLine">
Comparing <a href="" id="search1link">search #1</a> to
<a href="" id="search2link">search #2</a>.
<a href="#" id="searchParamToggle">[edit]</a>
</p>
<table border="1">
<thead id="scompTHeader"></thead>
<tbody id="scompTBody"></tbody>
</table>
</div>
</body>
</html>