Skip to content

Instantly share code, notes, and snippets.

@xavierchow
Last active August 29, 2015 14:19
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 xavierchow/157c05b7fea5f28854b4 to your computer and use it in GitHub Desktop.
Save xavierchow/157c05b7fea5f28854b4 to your computer and use it in GitHub Desktop.
<html>
<head>
<script src="https://code.jquery.com/jquery-git2.min.js"></script>
<script>
$(document).on('click', 'a.clickme', function(e) {
//e.preventDefault();
console.log('clicked');
});
</script>
</head>
<body>
<a href="repeatClick.html" class="clickme">click me!</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment