Decimas adlı üyeden alıntı

Event listener kuracaksın yada bu şekilde dinamik olarak sonradan eklenen öğeleri takip edebilirsin.


// 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.


bu benim ajax bilgimi bayağı aştı