Created
March 27, 2017 07:39
-
-
Save Origame/c0022b3210fe6fcc07dcf92667b1cddf to your computer and use it in GitHub Desktop.
JS - Go to data-link
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
//@selector: must have a data-link attribute with url | |
Nsw.goToDataLink = function(selector){ | |
var $selector = $(''+selector+''); | |
var link = $selector.data('link'); | |
$selector.on('click', function(){ | |
window.location.href = link; | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment