Opened 13 years ago
Closed 13 years ago
#6335 closed bug (invalid)
$.unique bug with microsoft internet explorer (8)
Reported by: | HomerJ | Owned by: | |
---|---|---|---|
Priority: | Milestone: | 1.4.3 | |
Component: | unfiled | Version: | 1.4.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
i found this issue while using $.unique with a native array on MSIE:
code: var eventIds = [ "b5f4cea2-5585-457d-a1fd-11429bdf06e3", "b5f4cea2-5585-457d-a1fd-11429bdf06e3", "8af91d35-2dba-4281-a3b5-4dde09a0e4fc", "8af91d35-2dba-4281-a3b5-4dde09a0e4fc" ];
eventIds = $.unique(eventIds);
results in:
eventIds: [ "8af91d35-2dba-4281-a3b5-4dde09a0e4fc", "b5f4cea2-5585-457d-a1fd-11429bdf06e3", "8af91d35-2dba-4281-a3b5-4dde09a0e4fc" ];
and
Attachments (1)
Change History (3)
Changed 13 years ago by
comment:1 Changed 13 years ago by
comment:2 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
http://api.jquery.com/jQuery.unique/
This function only works on plain JavaScript arrays of DOM elements, and is chiefly used internally by jQuery.
Note: See
TracTickets for help on using
tickets.
i forgot to add that it works perfectly with gecko and is buggy with any version of ms internet explorer