replace all a link to touchstart
Hi All,
Because of the standard a link will have approximately 300-400ms delay, many people suggest to use touchstart.
My question is how to I utilise this touchstart, I tried
- $('a').bind('touchstart', function(e){
- $(this).trigger('click');
- e.preventDefault();
- });
but doesn't look it boost the performance.
My question is did I do this right?