Ticket #4733: test-4733.html
File test-4733.html, 429 bytes (added by , 12 years ago) |
---|
Line | |
---|---|
1 | <html> |
2 | <head> |
3 | <title>test</title> |
4 | <script type="text/javascript" src="http://code.jquery.com/jquery-1.4a1.js"></script> |
5 | <script type="text/javascript"> |
6 | $(function(){ |
7 | |
8 | var a = $.makeArray($("form")[0]); |
9 | alert(a.length); |
10 | |
11 | }); |
12 | </script> |
13 | </head> |
14 | <body> |
15 | <form> |
16 | <input type="text" name="test1" value="arf1" /> |
17 | <input type="text" name="test2" value="arf2" /> |
18 | <input type="text" name="test3" value="arf3" /> |
19 | </form> |
20 | </body> |
21 | </html> |
22 |