|
Posted by Sonnich on 09/29/30 11:52
Jonathan N. Little wrote:
> 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?
> >
> > BR
> > Sonnich
> >
> > <a
> > onmouseout="this.className="""
> > onmouseover="this.className="BOLD""
> >
> > onclick="OpenWin("file:///\\\\some_server/some_folders/file.pdf");">
> > here
> > </a>
> >
> > The openwin is :
> >
> > function OpenWin(targ)
> > {
> > alert (targ); // testing
> > window.open(targ);
> > }
> >
>
> You've made the most common Windows-centric error, '\' backslashes are
> *Windows only*, for the rest of the 'world' it is '/' forward slashes.
>
> file://///some_server/some_folders/file.pdf
>
> and the onclick handler is JavaScript so you would not use HTML
> entities, but single quote in this situation
>
> ... onclick="OpenWin('file://///some_server/some_folders/file.pdf');">
None of the suggestions work.
I have the code as here now, and tried whatever (except the right
thing).
I have a PHP thing, which runs on a server, then creating a PDF file on
another server, which I'd like to open.
The alert is present, but the file is never opened, not even a window.
Navigation:
[Reply to this message]
|