Posted by Benjamin Niemann on 09/27/81 11:52
Sonnich wrote:
> Hi all!
>
> I have this in IE:
> The font change works in both IE and mozilla, but the link does not
> work in mozilla... can anyone help stupid me?
>
> <a
onclick="OpenWin("file:///\\\\some_server/some_folders/file.pdf");">
> here
> </a>
Backslashes are not allowed in URLs. Although Windows uses the backslash as
a seperator, always use the forward slash in URLs. IE is known
to 'auto-correct' backslashes into correct slashes, but other browsers are
not so forgiving. The correct URL should be
<file://some_server/some_folders/file.pdf>.
--
Benjamin Niemann
Email: pink at odahoda dot de
WWW: http://pink.odahoda.de/
[Back to original message]
|