undo in open in new window

K

Karl E. Peterson

Richard presented the following explanation :
How do you undo a page from opening in a new window? Thanks in advance!!

Examine the anchor tag associated with it. Or, if as I'm suspecting,
you're not comfortable with HTML, right click on the link and pop the
Hyperlink dialog, then reset the target option as desired.
 
T

Trevor Lawrence

I have been changing my web pages to eliminate target= because it is not
valid in Strict HTML 4.01.

The normal action without 'target=' is '_self' , i.e. overwrite the current
page. To open in a new page requires JavaScript to be added to the anchor
tag
e.g.
<a href="........." onclick="window.open('url'); return false;">Click
here</a>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top