Thread
:
How to make HTML file open in new window?
View Single Post
07-11-2011, 04:44 AM
#
3
(
permalink
)
lilly1236
Status:
Guest
Posts:
n/a
to open HTML files in new window set the "target" attribute in anchor tag as "_blank" :
For example:
<a href="newfile.html" TARGET="_blank">Opens in new window</a>
Hope this will solve your problem ...
lilly1236