Bug Tracker

Ticket #2568 (new bug)

Opened 9 months ago

Last modified 7 months ago

elem has no properties error in nodeName method

Reported by: hobbit Assigned to: anonymous
Type: bug Priority: major
Milestone: 1.2.4 Component: core
Version: 1.2.3 Keywords:
Cc: Needs: Test Case

Description

When we run the $.getJSON method sometimes an unusual issue rise in. "elem has no properties in 660 line."

nodeName: function( elem, name ) {

return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();

}

vs

nodeName: function( elem, name ) {

return elem && elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();

}

Attachments

Change History

Changed 7 months ago by flesler

  • need changed from Commit to Test Case

Test case please ?

Note: See TracTickets for help on using tickets.