Modify ↓
Ticket #6140 (closed bug: invalid)
jQuery removeClass bug?
| Reported by: | Leur | Owned by: | |
|---|---|---|---|
| Priority: | Milestone: | 1.4.2 | |
| Component: | unfiled | Version: | 1.4.1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
In this example I try removing the class of bake and adding the class of cake. However when cake is added, $(".bake") takes the action of what should have been just $("cake").
var bake=0; $(document).ready(function() { $(".bake").click(function() { $(this).html("Clicks: " + ++bake); $(this).removeClass('bake'); $(this).addClass('cake'); }); });
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Do you have a larger example? I'm not seeing the issue here.