Remove click delay on mobile browser

mobileClick.js - jQuery plugin that create self event 'mobileclick', not invoke 'click' event, not interfering in propagate stack of events. You need just bind 'mobileclick' event to you html element:
$('you-element-selector').bind('mobileclick', function() {
    alert('test me');
})
// or
$(document).on('mobileclick', 'you-element-selector', function() {
    alert('test me');
})
github project: mobileClick