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?
Try just
window.location.href.If you’re actually trying to access an iframe’s location, try
iframe.contentWindow.location.href