Код:
$('.link').live('click',function(){
location.href='link.php?concert='+$(this).attr('concert');
});
Возможно ли это?
$('.link').live('click',function(){
location.href='link.php?concert='+$(this).attr('concert');
});
<a href="#" target="blank_">Link</a>
Цитата |
Возможно ли это? |
var a = document.createElement('a');
a.href='http://www.google.com';
a.target = '_blank';
document.body.appendChild(a);
a.click();