Ticket #11875 (closed bug: invalid)
getAttributeNode is undefined
| Reported by: | nassi9@… | Owned by: | nassi9@… |
|---|---|---|---|
| Priority: | undecided | Milestone: | None |
| Component: | unfiled | Version: | 1.7.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
set: function (a, b, d) { var e = a.getAttributeNode(d);
this line throws exception in the "a.getAttributeNode" because the getAttributeNode is undefined.
Change History
comment:1 follow-up: ↓ 2 Changed 12 months ago by dmethvin
- Owner set to nassi9@…
- Status changed from new to pending
comment:2 in reply to: ↑ 1 Changed 12 months ago by anonymous
Replying to dmethvin:
Yeah, we're having a lot of problems with that a variable. I think we should change it to b, maybe that would fix it.
Oh, by the way, can you create a test case and put it on jsFiddle so we know what the value of a is when the error occurs?
I am using a lot of libraries and they are conflicts with the jQuery I think you just need to add if (typeof a.getAttributeNode != "undefined") -- maybe....
comment:3 Changed 12 months ago by dmethvin
We still need a test case before we can proceed. I want to know what a has.
comment:4 Changed 11 months ago by trac-o-bot
- Status changed from pending to closed
- Resolution set to invalid
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

Yeah, we're having a lot of problems with that a variable. I think we should change it to b, maybe that would fix it.
Oh, by the way, can you create a test case and put it on jsFiddle so we know what the value of a is when the error occurs?