An implementation of Google's FastButton javascript, to avoid the 300ms touch delay on Android and iOS devices. Code forked from: http://stackoverflow.com/questions/6300136/trying-to-implement-googles-fast-button
new FastButton(document.getElementById('your-button'), function() {
alert('click');
});
$('#your-button').fastClick(function(e) {
alert('fast clicked!');
});
x$('#your-button').fastClick(function(e) {
alert('fast clicked!');
});