Created
November 9, 2013 23:10
-
-
Save xpander54/7391293 to your computer and use it in GitHub Desktop.
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
$(document).ready(function() | |
{ | |
console.log('ready bases'); | |
var bases = $(".nfo-bases") | |
bases.click(function(evt) | |
{ | |
$this = $(this); | |
console.log($this.data('loc')); | |
}); | |
}); | |
html | |
<div data-loc="df"> | |
</div> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment