dennismonsewicz Posted December 19, 2008 Share Posted December 19, 2008 This code: function checkUrl() { var oldurl = window.opener.window.location.href; document.write(oldurl); } Does not work in IE6 but works in FF... any thoughts? Quote Link to comment Share on other sites More sharing options...
Adam Posted December 20, 2008 Share Posted December 20, 2008 Try: var oldurl = location.href; A Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.