Side navigation
#6614 closed bug ()
Opened May 30, 2010 07:36PM UTC
Closed November 11, 2010 11:09PM UTC
BUG: jQuery 1.4.2 > $().after();
Reported by: | shamuntoha | Owned by: | shamuntoha |
---|---|---|---|
Priority: | low | Milestone: | |
Component: | selector | Version: | 1.4.2 |
Keywords: | after | Cc: | |
Blocked by: | Blocking: |
Description
1. FF works, IE8 does not working.
2. Line 2 > .after() does nothing in IE8
Line 1: $('[name="bladid"]').val( $(this).find('td:nth-child(1)').html() );
Line 2: $('[name="bladid"]').after('<a target="_blank" href="bladeninfo/upload.php?bladid=' + $(this).find('td:nth-child(1)').html() + '>NL/FR upload</a>');
3. FF i get same code, output:
<input type="text" name="bladid">
<a href="bladeninfo/upload.php?bladid=2245" target="_blank">NL/FR upload</a>
IE none.
Can you distill the above code snippets into a test case on jsFiddle, Thanks!