Jurudocs
Jurudocs

Reputation: 9175

Uncaught TypeError: Cannot read property 'document' of undefined in IE and Chrome Firefox is fine

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

Answers (1)

Niet the Dark Absol
Niet the Dark Absol

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

Related Questions