I am struggling to get this piece of code to function correctly,
$(document).ready(function() {
$('.hover').bind('touchstart touchend', function(e) {
e.preventDefault();
$(this).toggleClass('hover_effect');
});
Could you please take a look at my JSFiddle test script?
Appreciate your assistance!