MALeonard
Technical User
- Mar 27, 2005
- 8
I have written a (client side) javascript using:
objHttpReq = new ActiveXObject('Msxml2.XMLHTTP');
Then do the OPEN/GET/SEND/etc on a local file.
Everything works fine, except...
Now all the regular HTTP links on the page-
<a href="......">xxxx</>
Auto add "file:///...path..." to the front of the HREF
when hover over/click on.
How to cancel/reset back from "local" to "web" mode?
Am doing...
objHttpReq.close;
objHttpReq = false;
...no help
*