, script , , :
<a href="page.html" target="_blank">page</a>
script, click:
<a href="page.html" target="_blank" onclick="window.open(this.href,this.target,'width=200,height=300');return false;">page</a>
jQuery , , , , class="popup":
$(function(){
$('a.popup').click(function(e){
window.open(this.href,this.target,'width=200,height=300');
e.preventDefault();
});
});
, location=0,menubar=0,status=0,toolbar=0, .. . , , , .
, , top=...,left=.... , , .
, , iframe. , , :
$(function(){
$('a.popup').click(function(e){
var w = window.open('',this.target,'width=200,height=300')
w.document.open();
w.document.write(
'<html>'+
'<head>'+
'<style>'+
'iframe { border: none; height: 250px; }'+
'a { float: right; padding: 10px; }'+
'</style>'+
'</head>'+
'<body>'+
'<iframe src="'+this.href+'"></iframe>'+
'<a href="javascript:window.close();">Close</a>'+
'</body>'
);
w.document.close();
e.preventDefault();
});
});