Opened 13 years ago
Closed 13 years ago
#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: | ||
Blocked by: | Blocking: |
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'); }); });
Note: See
TracTickets for help on using
tickets.
Do you have a larger example? I'm not seeing the issue here.