Created
December 25, 2018 14:16
-
-
Save Padilo300/524145b3b07f1dd61a04874185b2b060 to your computer and use it in GitHub Desktop.
js закрыть ссылку (открыть в новом окне)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.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