Link to home
Start Free TrialLog in
Avatar of architec
architec

asked on

Text in a new window

I need to access txt files and see them on the screen. I  currently link to the txt file and it shows up as a full
screen. In order to return, you must hit the Back button.  How do I call the fill up to be seen in a new window
so that I can still view info on the main screen??
Avatar of Serg
Serg

Sounds more like JavaScript Question...

if you want to have it as a link then you should use something like this...[open.window]
which will link to txt and open a new window, you can also modify the defoult size for the new window
But once again this is much easier done in JavaScript....if i understand you right ofcourse
perhaps you should re-post this to that section.
ASKER CERTIFIED SOLUTION
Avatar of mitek
mitek

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Even easier than that, why not do this...

<a href="textfile.txt" target="xyz">Text Document</a>