#7221 closed bug
toggle() has problem with set of objects
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | 1.5 |
Component: | unfiled | Version: | 1.5 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I used toggle() to set of tables. After first click it shows and hides it as normal, but after second click it shows and hides only first object of this set. So I had to use something like that:
$('.payment_detailed').each(function() { var t = $(this); if(t.css('display') == 'none') { t.css('display', 'table'); } else { t.css('display', 'none'); } });
Change History (5)
comment:1 Changed 12 years ago by
Owner: | set to [email protected]… |
---|---|
Status: | new → pending |
comment:2 Changed 12 years ago by
Milestone: | 1.4.4 → 1.4.5 |
---|
Retargeting due to severity of regressions in 1.4.3.
comment:3 Changed 12 years ago by
Status: | pending → closed |
---|
Automatically closed due to 14 days of inactivity.
comment:14 Changed 12 years ago by
Version: | 1.4.3 → 1.5 |
---|
There wasn't a 1.4.5 release, was actually 1.5.
comment:15 Changed 12 years ago by
Milestone: | 1.4.5 → 1.5 |
---|
There was no 1.4.5 release, was actually 1.5.
Note: See
TracTickets for help on using
tickets.
Can you please submit a complete test case using jsFiddle (or your own file) so that we can evaluate the complete that you experienced this bug in?