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. Quote Link to comment 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. Quote Link to comment 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. Quote Link to comment 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] Quote Link to comment 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? 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.