I have a weird request here, i have someone that wants 2 word doc files to be opened when they click on one hyper link, and they dont want the files zipped up into one.
this is what i came up with.... the links are not real in this example
but it works on some systems and not on others... basically it comes down to if they have a doc viewer or not. with out a doc viewer the browser opens 2 windows and downloads both of them with the browser it opens 2 windows and then chokes when the doc view opens......
so does anyone have any bright ideas?
this is what i came up with.... the links are not real in this example
but it works on some systems and not on others... basically it comes down to if they have a doc viewer or not. with out a doc viewer the browser opens 2 windows and downloads both of them with the browser it opens 2 windows and then chokes when the doc view opens......
HTML:
<a href="javascript: x=window.open('http://www.mydomain.com/documents/word1.doc', 'open_window1', 'menubar, toolbar, location, directories, status, scrollbars, resizable, dependent, width=640, height=480, left=0, top=0'); y=window.open('http://www.mydomain.com/documents/word2.doc', 'open_window2', 'menubar, toolbar, location, directories, status, scrollbars, resizable, dependent, width=640, height=480, left=0, top=0');">open documents</a>
so does anyone have any bright ideas?