Bug Tracker

Modify

Ticket #1567 (closed bug: fixed)

Opened 6 years ago

Last modified 6 years ago

nodeName without toUpperCase() in add() method

Reported by: davojan Owned by:
Priority: major Milestone: 1.2.1
Component: core Version: 1.2
Keywords: Cc:
Blocking: Blocked by:

Description

In jquery 1.1.4 on line 285:

t.length != undefined && (!t.nodeName || t.nodeName == "FORM") ?

should be:

t.length != undefined && (!t.nodeName || jQuery.nodeName(t, "form")) ?

Reason: in xhtml nodeName is in lowercase.

Change History

comment:1 Changed 6 years ago by john

  • Status changed from new to closed
  • Version changed from 1.1.4 to 1.2
  • Resolution set to fixed
  • Milestone changed from 1.2 to 1.2.1

Fixed in SVN rev [3305].

Please follow the  bug reporting guidlines and use  jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.