Can I open links on click in new browser (not a popup) window?
Things I have tried:
<a href='http://osric.net/' onclick='return !window.open(this.href);'>osric.net web hosting</a>
A function onclick:
var windowObjectReference;
var strWindowFeatures = "menubar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes, toolbar=yes";
function openRequestedPopup() {
windowObjectReference = window.open("http://www.cnn.com/", "CNN_WindowName", strWindowFeatures);
}
but with these it opens in new tab only.