Opened 12 years ago
Closed 12 years ago
#9906 closed bug (invalid)
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);
Note: See
TracTickets for help on using
tickets.
IE wraps
tr
s in atbody
http://jsfiddle.net/rwaldron/bV6Wd/ use closest("table")Support questions should be directed to the support forum