Ticket #3848: test1-1.3-works.html
File test1-1.3-works.html, 423 bytes (added by , 14 years ago) |
---|
Line | |
---|---|
1 | <html> |
2 | <head> |
3 | <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script> |
4 | <script type="text/javascript"> |
5 | jQuery(function(){ |
6 | jQuery('.m2>li>b').css('background','red'); |
7 | }); |
8 | </script> |
9 | </head> |
10 | <body> |
11 | |
12 | <ul class="m2"> |
13 | <li> |
14 | <b>test</b> |
15 | <ul class="m3"> |
16 | <li><b>test</b></li> |
17 | <li><b>test</b></li> |
18 | </ul> |
19 | </li> |
20 | </ul> |
21 | </body> |
22 | </html> |