Skip to content

Instantly share code, notes, and snippets.

@avargas
Created June 2, 2012 18:48
Show Gist options
  • Save avargas/2859574 to your computer and use it in GitHub Desktop.
Save avargas/2859574 to your computer and use it in GitHub Desktop.
<script>
$(document).ready(function() {
$(".boton")
.bind("touchstart", function () {
$(this).addClass("active");
})
.bind("touchend", function() {
$(this).removeClass("active");
})
.bind("touchcancel", function() {
$(this).removeClass("active");
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment