Side navigation
#9906 closed bug (invalid)
Opened July 25, 2011 07:24PM UTC
Closed July 25, 2011 09:29PM UTC
Strange behavior with wrap() in IE and Mozilla
Reported by: | anonymous | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.6.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Example included for better understanding:
<table class="grid" border="1"> <tr> <th>Column 1</th> <th>Column 2</th> </tr> <tr> <td>Content 1</td> <td>Content 2</td> </tr> </table>
I try to get the TABLE tag with a parent function
var table = $('.grid tr:first').parent();
This means, get the parent of the first line from a table with the class "grid" assigned to it ("$('.grid table)" won't work btw.), which is the table itself.
Now trying to wrap the table in a DIV tag fails in IE 8 and ends up with a strange behavior in Mozilla.
table.wrap(div);
But if you try to do the same with
$('table').wrap(div);
everything is fine ...
The variable "table" seems to be a valid element. This code work:
table.hide(1000);
Attachments (0)
Change History (1)
Changed July 25, 2011 09:29PM UTC by comment:1
resolution: | → invalid |
---|---|
status: | new → closed |
IE wraps
tr
s in atbody
http://jsfiddle.net/rwaldron/bV6Wd/ use closest("table")Support questions should be directed to the support forum