RaftKorn, попробуйте обрабатывать события touchstart/touchend:
jQuery('.class_hov').on('mouseenter touchstart', function() {
jQuery('.class_vip').toggle();
});
jQuery('.class_hov').on('mouseleave touchend', function() {
jQuery('.class_vip').toggle();
});