I'm using the latest IE7 and FF3, the standards at my company.
I have two cases...
1. Styles: In my style sheet I have:
body {background-image:url(/z:/internalsite/projects/images/joespic.jpg);}
2. in the body somewhere:
<img src="/z:/internalsite/projects/images/tomspic.bmp" />
Thanks to Firebug's DOM inspection, I was able to get those to work in Firefox.
Here's the problem...that format for locating a file on a mapped drive does not work in IE7. IE7 prefers ALMOST ANYTHING ELSE!!!???????? ?????????(imagi ne about a zillion more ? marks)
like:
<img src="file:\\//
<img src="\\\
<img src="///
<img src="file:///z:/
I guess because we are on XP Pro at work, IE7 just ignores all the bogus src locations, but gets the images anyway.
What is the proper way to do this?
TIA
I have two cases...
1. Styles: In my style sheet I have:
body {background-image:url(/z:/internalsite/projects/images/joespic.jpg);}
2. in the body somewhere:
<img src="/z:/internalsite/projects/images/tomspic.bmp" />
Thanks to Firebug's DOM inspection, I was able to get those to work in Firefox.
Here's the problem...that format for locating a file on a mapped drive does not work in IE7. IE7 prefers ALMOST ANYTHING ELSE!!!???????? ?????????(imagi ne about a zillion more ? marks)
like:
<img src="file:\\//
<img src="\\\
<img src="///
<img src="file:///z:/
I guess because we are on XP Pro at work, IE7 just ignores all the bogus src locations, but gets the images anyway.
What is the proper way to do this?
TIA
Comment