IOS box-shadow css input
IOS убрать box-shadow с input
1 2 3 |
webkit-appearance: none; -moz-appearance: none; appearance: none; |
IOS убрать box-shadow с input
1 2 3 |
webkit-appearance: none; -moz-appearance: none; appearance: none; |
Iphone/ios click event Событие клик на iphone не работает?
1 2 3 4 |
$(document).on('click', '.p_cab_mob', function() { $(this).toggleClass('open_h5'); $(this).parent().parent().toggleClass('open'); }); |
Есть 2 варианта решения этой проблемы #1 С добавление event touchstart
1 2 3 4 |
$(document).on('click touchstart', '.p_cab_mob h5', function() { $(this).toggleClass('open_h5'); $(this).parent().parent().toggleClass('open'); }); |
#2 Событие click
1 2 3 4 |
$('.p_cab_mob h5').click(function(){ $(this).toggleClass('open_h5'); $(this).parent().parent().toggleClass('open'); }); |