d_barszczak Posted October 20, 2006 Share Posted October 20, 2006 Can any one find a problem with the following javascript?[code]< script Type=text\javaScript Language=javaScript>window.location.replace('www.google.com');</ script>[/code][font=Verdana][color=red]Please note the space between < script is not an error just the forum would let me submit.[/color][/font]This has worked fine for me for over 12 months but since my workplace upgraded to ie7it's all gone to pot. The browser just seems to ignore the code all together. Fire Fox too. Link to comment https://forums.phpfreaks.com/topic/24533-please-help-me-before-i-throw-myself-off-this-cliff/ Share on other sites More sharing options...
obsidian Posted October 20, 2006 Share Posted October 20, 2006 you don't need replace on there. you simply need to make your window.location equal to where the browser needs to go:[code]window.location = "http://www.google.com";[/code]upgrading to IE7 would not effect how FF interprets the javascript. Link to comment https://forums.phpfreaks.com/topic/24533-please-help-me-before-i-throw-myself-off-this-cliff/#findComment-111786 Share on other sites More sharing options...
fenway Posted October 20, 2006 Share Posted October 20, 2006 Also, it should be text/javascript - note the forward slash. Link to comment https://forums.phpfreaks.com/topic/24533-please-help-me-before-i-throw-myself-off-this-cliff/#findComment-111918 Share on other sites More sharing options...
obsidian Posted October 20, 2006 Share Posted October 20, 2006 [quote author=fenway link=topic=112109.msg455031#msg455031 date=1161361095]Also, it should be text/javascript - note the forward slash.[/quote]with quotes around it ;)[code]< script type="text/javascript">window.location = "http://www.google.com";</ script>[/code] Link to comment https://forums.phpfreaks.com/topic/24533-please-help-me-before-i-throw-myself-off-this-cliff/#findComment-111944 Share on other sites More sharing options...
fenway Posted October 22, 2006 Share Posted October 22, 2006 [quote author=obsidian link=topic=112109.msg455057#msg455057 date=1161363895][quote author=fenway link=topic=112109.msg455031#msg455031 date=1161361095]Also, it should be text/javascript - note the forward slash.[/quote]with quotes around it ;)[code]< script type="text/javascript">window.location = "http://www.google.com";</ script>[/code][/quote]I always quote everything... but isn't the slash considered a non-whitespace? Link to comment https://forums.phpfreaks.com/topic/24533-please-help-me-before-i-throw-myself-off-this-cliff/#findComment-112813 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.