I can't make this code work properly,
$(document).ready(function() {
$('.hover').bind('touchstart touchend', function(e) {
e.preventDefault();
$(this).toggleClass('hover_effect');
});
can you please have a look at my JSFiddle test script?
Thanks!