Modify ↓
Ticket #1567 (closed bug: fixed)
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
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Fixed in SVN rev [3305].