#10918 closed bug (duplicate)
fadeIn/show a table row will add style='display: block' to the tr tag (only in firefox)
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | effects | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
This is may a duplicate of http://bugs.jquery.com/ticket/8629, fadeIn(or show) a table row will add "style='display: block'" to the tr tag which messed up the table. It's only repro in firefox with jquery 1.5 to 1.7. IE is correct, and jquery 1.4.1 is also ok.
I have created a very simple example to duplicate the issue. http://jsfiddle.net/7NyUK/
Change History (4)
comment:1 Changed 12 years ago by
Component: | unfiled → effects |
---|---|
Priority: | undecided → low |
Status: | new → open |
comment:2 Changed 12 years ago by
I second this comment. I don't understand how using .hide() is a fix. I want to show, not hide the element.
I tried using .hide().fadeIn() but the display: block element is still there.
I've seen multiple versions of this ticket but this seems to be one of the only open ones.
comment:4 Changed 12 years ago by
Resolution: | → duplicate |
---|---|
Status: | open → closed |
Note: See
TracTickets for help on using
tickets.
I can reproduce this in Firefox 8, not in Chrome 15.
You can easily fix this in Firefox by placing
.hide()
after.insertAfter()
, but that's only a temp fix.Since it works correctly in Chrome, but not in Firefox, this should be fixed.