#10095 closed bug (duplicate)
removeData does not remove data- attributes
Reported by: | Kruncher | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.6.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The removeData function does not remove data attributes that were present in original HTML. This seems inconsistent with usage of data function.
<div data-test="42"></div> $('div').data('test') === "42"; // true $('div').removeData('test'); $('div').data('test') === "42"; // true
The removeAttr function works, surely removeData should do the same?
Change History (2)
comment:1 Changed 11 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
comment:2 Changed 11 years ago by
Note: See
TracTickets for help on using
tickets.
Duplicate of #10026.