Skip to content

Instantly share code, notes, and snippets.

@xpander54
Created November 9, 2013 23:10
Show Gist options
  • Save xpander54/7391293 to your computer and use it in GitHub Desktop.
Save xpander54/7391293 to your computer and use it in GitHub Desktop.
$(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