Skip to content

Instantly share code, notes, and snippets.

@preist
Created June 28, 2018 20:02
Show Gist options
  • Select an option

  • Save preist/7dad69a07feac0be162ee46e58e2d0d0 to your computer and use it in GitHub Desktop.

Select an option

Save preist/7dad69a07feac0be162ee46e58e2d0d0 to your computer and use it in GitHub Desktop.
Make any elements behave like a link
$(document).on("click", "[data-href]", function(e) {
return location.href = $(this).attr('data-href');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment