javascript - Redirection to a locale page with a Firefox extension -
i'd have page redirecting using javascript. i've tried document.location.href doesn't work local pages (stored in hard drive). know trick ?
thanks,
bruno
doesn't it? i've tried following , works fine:
<html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> </head> <body> <input type="text" value="" id="test"/> </body> <script type="text/javascript"> document.location.href = "file:///c:/dev/piccs/vb/binaries/"; </script> </html> tested in ie8 , chrome
Comments
Post a Comment