I have added following code in wordpress to hide status bar. It works but I want to open link in new window. How can I do that?
<img style='cursor:pointer;' src='http://www.killerpreseller.com/images2/buynow.gif' onclick="window.location='http://www.yahoo.com'"/>
Use an anchor with target
'_blank'
wrapping your imagehttp://jsfiddle.net/Ree5t/
You can use:
As per How to simulate target=”_blank” in JavaScript
This is the equivalent of an anchor tag with target=’blank’ set.