Reputation: 9175
I'm facing a strange error I don't understand. In Firefox 11 everything is allright. Chrome and IE 9 are making trouble and give the same errors for this line:
Uncaught TypeError: Cannot read property 'document' of undefined
curr_url_id=window.content.document.location.href;
Any help with that?
Upvotes: 0
Views: 6221
Reputation: 324780
Try just window.location.href
.
If you're actually trying to access an iframe's location, try iframe.contentWindow.location.href
Upvotes: 2