$(document).ready(function(){
$("a[@href^='http']").attr('target','_blank');
});
Zamiast standardowego target="_blank", pobieramy wszystkie linki i dodajemy atrybut target _blank za pomocą jquery.
$(document).ready(function(){
$("a[@href^='http']").attr('target','_blank');
});
Zamiast standardowego target="_blank", pobieramy wszystkie linki i dodajemy atrybut target _blank za pomocą jquery.