Ticket #5166: testcase1.html
File testcase1.html, 496 bytes (added by , 13 years ago) |
---|
Line | |
---|---|
1 | <html> |
2 | <head> |
3 | <script type="text/javascript" language="javascript" src="jquery-1.3.2.min.js"></script> |
4 | <script langauge="javascript" type="text/javascript"> |
5 | $(document).ready(function(){ |
6 | pobj=new Object(); |
7 | $('a[rel^=test]').each(function(){ |
8 | txt = $('span.hoverwindow',this).html(); |
9 | alert(txt); |
10 | } |
11 | } |
12 | </script> |
13 | </head> |
14 | <body> |
15 | <a rel="test" href="#">Test<span class="hoverwindow">This is a <a href="#">test link</a> to see if the bug is reproducible.</span></a> |
16 | </body> |
17 | </html> |