Modify ↓
Ticket #9461 (closed bug: duplicate)
removeData not working for names with a "-"
| Reported by: | sieber@… | Owned by: | |
|---|---|---|---|
| Priority: | high | Milestone: | 1.next |
| Component: | data | Version: | 1.6.1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
When using names containg a "-" character in the data's name the removeData function does not work. Here some steps to reproduce:
var $b = $('body'); $b.data('x-y', 1); console.log($b.data('x-y')); ok, this shows a 1 $b.removeData('x-y'); console.log( $b.data('x-y') ); not ok, this shows still a 1, should show undefined
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.
