// see stats
$(document.body).on('click', '.see-stats', function () {
var protocolhost = protocol + ':\/\/' + host + '\/';
var win = window.open(protocolhost + 'stats.php?code=' + $(this).attr('id') , '_blank');
if (win) {
win.focus();
} else {
// when browser has blocked it
alert('Please allow popups for this website');
}
});
Kendine göre düzenlersin.