1 | <html> |
---|
2 | <head> |
---|
3 | <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js'></script> |
---|
4 | <script type='text/javascript'> |
---|
5 | $(function(){ |
---|
6 | /* |
---|
7 | * To see the warning message in Firefox/Firebug console: |
---|
8 | * "Unknown pseudo-class or pseudo-element 'selected'." |
---|
9 | * 1) Enable "Show CSS Errors" in the console window. |
---|
10 | * 2) Load this page. |
---|
11 | * |
---|
12 | * The warning seems to be generated in the try/catch around querySelectorAll in Sizzle. |
---|
13 | */ |
---|
14 | $("option:selected"); |
---|
15 | }); |
---|
16 | </script> |
---|
17 | </head> |
---|
18 | <body> |
---|
19 | |
---|
20 | </body> |
---|
21 | </html> |
---|