To catch things on the ipad, you can look for these touchstart, touchhend, touchmove events.
To call something you can just do $ (Element) .trigger ('event_name');
$('testElement').on('touchend', function () {
$(this).trigger('mouseout');
});
source
share