Ticket #6817: test-6817.html
File test-6817.html, 402 bytes (added by , 12 years ago) |
---|
Line | |
---|---|
1 | <!DOCTYPE html> |
2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
3 | <head> |
4 | <title></title> |
5 | <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js" type="text/javascript"></script> |
6 | <script type="text/javascript"> |
7 | $(function(){ |
8 | alert( |
9 | $( "input:hidden" ).length |
10 | ); |
11 | |
12 | |
13 | }); |
14 | </script> |
15 | </head> |
16 | <body> |
17 | <input type="hidden"/> <input type="hidden"/> <input type="text"/> |
18 | |
19 | |
20 | </body> |
21 | </html> |