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 https://forums.phpfreaks.com/topic/137701-solved-this-not-working-in-ie6/ 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 https://forums.phpfreaks.com/topic/137701-solved-this-not-working-in-ie6/#findComment-720273 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.