FastClick implementation for PointerEvents
Based on Google's FastButton implementation
<script>
var button = document.querySelector(".button");
new PointerEventsFastClick.FastClick(button, function(){
// run some code
});
</script>
<script>
$('.button').FastClick(function() {
// run some code
});
</script>