Bug Tracker

Opened 12 years ago

Closed 12 years ago

Last modified 12 years ago

#9049 closed bug (duplicate)

.filter is searching children in IE when html5 tags are used

Reported by: jessedpate Owned by:
Priority: high Milestone: 1.next
Component: core Version: 1.5.2
Keywords: Cc:
Blocked by: Blocking:

Description

In internet explorer, the .filter method is incorrectly iterating over second level child nodes when html5 elements are used. This behaves as expected in firefox, chrome, and safari.

$("<body> <section class='first'> <div class='second'></div></section> </body>").filter(function() { console.log($(this).attr('class')); return $(this).is('.first') });

Expected result: 'First'

Actual Result: 'First' "Second'

Change History (2)

comment:1 Changed 12 years ago by Timmy Willison

Component: unfiledcore
Priority: undecidedhigh
Resolution: duplicate
Status: newclosed

comment:2 Changed 12 years ago by Timmy Willison

Duplicate of #6485.

Note: See TracTickets for help on using tickets.