website page opening in new window

  • Thread starter Thread starter bj
  • Start date Start date
B

bj

I have recently changed our web page and everything is great so far except
one of the pages opens in a new window and for the life of me i cannot
remember or find how to prevent that. Any help is appreciated.
 
In the links to the page look for target="whatever" and delete.
Example:
<a href="page.htm target="_blank">This page opens in a new window</a>
should be
<a href="page.htm">This page does not use a new window</a>
 
Links are located in the body. There may be a <base taget=""> tag in
the <head>, but this will affect EVERY link on that page. If required,
delete the entire <base target="???"> tag.

--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp
 
Back
Top