massimocolella
Results
1
issues of
massimocolella
hi, trying to understand: ``` javascript $$('a.add_fav').on('touchstart', function(e) { e.preventDefault(); mycodehere(); }); ``` seems to correctly prevent link to be executed, while ``` javascript $$('a.add_fav').tap(function(e) { e.preventDefault(); mycodehere(); }); ```...