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
|
<html>
<head> <title>Chained Selects</title>
<script language="javascript" src="chainedselects.js"> </script> <script language="javascript" src="config.php"></script>
</head>
<body onload="initListGroup('vehicles', document.forms[0].make, document.forms[0].type, document.forms[0].model, 'save')">
<table align="center" cellpadding="0" cellspacing="0" border="0" width="90%"><tr><td> <h3 align="center">Chained Selects</h3> <p align="center" class="copyright">Copyright 2004 Xin Yang</p>
<form> <table align="center"><tr> <td>Select a vehicle: </td> <td><select name="make" style="width:180px;"></select></td> <td><select name="type" style="width:180px;"></select></td> <td><input type="button" value="Reset" onclick="resetListGroup('vehicles')"> </tr></table> </form>
</body>
</html>
|