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? 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 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
Archived
This topic is now archived and is closed to further replies.