$(document).ready(function() {
$('.popup').click(function() {
var toppos = (screen.height/2)-(height/2);
var leftpos = (screen.width/2)-(width/2);
window.open($(this).attr("href"), "popupWindow", "width=600,height=600",top="+toppos+", left="+leftpos+");
retun false
});
});
$('.popup').click(function() {
var toppos = (screen.height/2)-(height/2);
var leftpos = (screen.width/2)-(width/2);
window.open($(this).attr("href"), "popupWindow", "width=600,height=600",top="+toppos+", left="+leftpos+");
retun false
});
});
Comments
Post a Comment