Ticket #5452: test-5452.html
File test-5452.html, 485 bytes (added by , 13 years ago) |
---|
Line | |
---|---|
1 | <html> |
2 | <head> |
3 | <title>test</title> |
4 | </head> |
5 | <script type='text/javascript' src='http://jqueryjs.googlecode.com/files/jquery-1.3.2.js'></script> |
6 | <script> |
7 | window.onload=function(){ |
8 | //document.getElementById("mysel").value = ""; |
9 | $("#mysel").val(""); |
10 | }; |
11 | </script> |
12 | <body> |
13 | |
14 | <select id="mysel" multiple="multiple" size="5"> |
15 | |
16 | <option>ALL</option> |
17 | <option>Name1</option> |
18 | <option value="">Name2</option> |
19 | <option>Name3</option> |
20 | |
21 | </select> |
22 | |
23 | </body> |
24 | </html> |