Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Padilo300/524145b3b07f1dd61a04874185b2b060 to your computer and use it in GitHub Desktop.
Save Padilo300/524145b3b07f1dd61a04874185b2b060 to your computer and use it in GitHub Desktop.
js закрыть ссылку (открыть в новом окне)
$('.no-link').on('click', function(evt){
evt.preventDefault();
var link = $(this).attr('data-href');
window.open(link, '_blank') ;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment