As the W3C found it fitting to deprecate the target="_blank" code
(example)
to open up a new browser window, how have you been creating a "new browser window"? I've been using some javascript
(example)
That works fine, as long as javascript isn't turned off. If it is turned off, the link goes no where.
How have you managed to accomplish it while maintaining XHTML compliance?
Thanks in advance.
(example)
Code:
<a href="site.html" target="_blank">My site</a>
(example)
Code:
<a href="javascript:" onclick="open('[URL unfurl="true"]http://www.site.html','','')">My[/URL] site</a>
How have you managed to accomplish it while maintaining XHTML compliance?
Thanks in advance.