|
Posted by G Doucet on 09/10/06 11:04
I guess I'm ok as far as sending files between the two computers, I was just wondering how and why my html files were being modified
in the process.
Also, the html files that I am writing will not be used on a web server. They will just be on my laptop's hard drive.
But being local files, Internet Explorer keeps showing a popup message on the html files which contain javascripts. This is really
annoying.
While searching the Internet about this, I found that by adding <!-- saved from url=(0014)about:internet --> at the top of my html
file, the popups go away. BTW, does anyone else use this?
But now my links to images don't work. Here's an example: I placed a test.htm file and image.gif file on my desktop. Test.htm is
like this:
<HTML>
<BODY>
<A href="image.gif" target="_blank">test</A>
</BODY>
</HTML>
And like this, the link works. But if I add that so called workaround comment, the link doesn't work. Example:
<!-- saved from url=(0014)about:internet -->
<HTML>
<BODY>
<A href="image.gif" target="_blank">test</A>
</BODY>
</HTML>
Any ideas why?
PS. My links to htm files are ok.
G Doucet
[Back to original message]
|