Ticket #7709 (closed bug: fixed)
Permission denied to access property 'nodeType' from a non-chrome Firefox/3.5.15
| Reported by: | anonymous | Owned by: | anonymous |
|---|---|---|---|
| Priority: | low | Milestone: | 1.6 |
| Component: | attributes | Version: | 1.4.4 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
MESSAGE:Permission denied to access property 'nodeType' from a non-chrome context LINE:24 FILE:http://.../js/jquery.js DATE: 2010-12-06 09:04
Can you add "if (nodeType)" or "if (typeof nodeType == blabla)" to the statment?
Change History
comment:2 Changed 2 years 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!
comment:3 Changed 2 years ago by rudibr@…
Pitching in...I had the same problem with jquery 1.4.2 with FF4
The offending line 84 on jquery-1.4.2.js :
if ( selector.nodeType ) {
My code wich resulted in the error :
if(window.opener) {
var target_window = window.opener;
} else {
var target_window = window;
}
changing the href here caused the crash : $(target_window.location).attr('href', data.projectURL);
workaround was manual js : target_window.location.href = data.projectURL;
comment:5 Changed 2 years ago by ajpiano
- Status changed from closed to reopened
- Resolution invalid deleted
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

Thanks for taking the time to contribute to the jQuery project by writing a bug report but there simply isn't enough information included in this report to understand what is going on.
(just googling for error messages similar to yours yields many reports on other bug trackers. From what I can tell this is a FF bug which should be resolved in the 3.6.x branch)
We require that all bug reports include a valid reduced test case, which reproduces the issue you are experiencing, on http://jsfiddle.net. This enables us to more easily investigate this issue further.
So please report back with more information and a reproducible test case and we will be more than happy to further investigate this issue.
How to report bugs