Строгое XHTML:
window.onload=function() {
document.getElementById('fbLink').onclick=function() {
var w=window.open(this.href,this.getAttribute("rel"),"width=500,height=600");
return w?false:true
}
}
с помощью
<a href="http://www.facebook.com" rel="external" title="Open Facebook" id="fbLink">facebook</a>
Safest:
<a href="http://www.facebook.com" target="_blank">Facebook</a>
Возможно (здесь встроено):
<a href="http://www.facebook.com" target="_blank"
onclick="var w=window.open(this.href,this.target,'width=500,height=600');
return w?false:true">Facebook</a>
Onobtrusive:
window.onload=function() {
document.getElementById('fbLink').onclick=function() {
var w=window.open(this.href,this.target,'width=500,height=600');
return w?false:true
}
}
с помощью
<a href="http://www.facebook.com" target="_blank" id="fbLink">facebook</a>