Ticket #5365: 5365-test-case-01.html
File 5365-test-case-01.html, 465 bytes (added by , 13 years ago) |
---|
Line | |
---|---|
1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
2 | "http://www.w3.org/TR/html4/loose.dtd"> |
3 | <html> |
4 | <head> |
5 | <title>Untitled</title> |
6 | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script> |
7 | <script> |
8 | $(function(){ |
9 | $("span").append( $("select").width() ); |
10 | }); |
11 | </script> |
12 | </head> |
13 | <body> |
14 | <form> |
15 | <select> |
16 | <option>Example Option</option> |
17 | </select> |
18 | <span>Width: </span> |
19 | </form> |
20 | </body> |
21 | </html> |