Open 2 webpages on link click
I have an IFrame on a webpage, and upon clicking on a hyperlink, I need to be able to refresh the IFrame AND ALSO open a different website in a new browser window, any help at all is greatly appreciiated.
Thank y开发者_JS百科ou
jase
Something like
<a href="otherpage.html" TARGET="_NEW" onClick="window.location.reload()">Reload and open</a>
ought to work
精彩评论