Skip to content

Instantly share code, notes, and snippets.

@codelittle
Created June 17, 2014 09:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codelittle/ef026a472e010e57e412 to your computer and use it in GitHub Desktop.
Save codelittle/ef026a472e010e57e412 to your computer and use it in GitHub Desktop.
app.js needs to become this
$(document).ready(function() {
$(document).foundation();
});
$(document).ready(function() {
// Transform any element that has data-url into a link
$('[data-url]').click(function () {
window.location = $(this).attr('data-url')
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment