I have a web page with some css3 animation on hover and I would like to make it work on iPad (and any touch enabled device) when the user touch these elements. Here\'s m
try this
$('#arm').bind('touchstart', function() { $(this).removeAttr('style').css('bottom','244px'); $(this).addClass('hover_effect'); }); $('#arm').bind('touchend', function() { $(this).removeClass('hover_effect'); });
similarly for $('#man').
$('#man').