-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexlist.html
52 lines (38 loc) · 994 Bytes
/
indexlist.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
<html>
<head>
<title>^TITLE^ Access List</title>
<style>
body {
font-family: 'Ubuntu',sans-serif;
}
</style>
<script>
$('.browse_window').live('dblclick',function(){
var id = $(this).attr('id');
var selVal = $(this).val();
$('#text_'+id).val(selVal);
var whatever = '';
var whatever = parent.targetbx;
whatever.value = selVal;
$('.close').click();
});
</script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body class="indexList" style="background: none repeat scroll 0 0 #EEEEEE">
<!-- IndexList-->
<div align="center">
<div class="browse_nav">
<a class="facebox" href="^PREV^">Prev 500</a>
<a class="facebox" href="^NEXT^">Next 500</a>
</div>
</div>
<div align="center">
<form name="keys">
<select class="browse_window" name="keyvalue" size=20 >
^INDEX_LIST^
</select>
</div>
</form>
</body>
</html>