You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @pukhalski - when doing some tests on one of the sites that I'm using tap on, I found an issue regarding the preventDefault() and return false event methods. They do not seem to be respected on the Android 4.3 stock browser; but other JS logic I'm writing in the .on('tap') function calls does get executed.
I don't have the device with me; but I will drop the specifics about the OS and browser version here. Will do some debugging tomorrow. An example from my code:
// Toggling the menu on clickvarmenu_toggle_trigger='.js-header__toggle_menu';varmenu_nav=jQuery('.js-header');jQuery(document).on('tap',menu_toggle_trigger,function(e){menu_nav.toggleClass('js-header--nav_open');ToggleMenu();returnfalse;});
The text was updated successfully, but these errors were encountered:
qikkeronline
changed the title
PreventDefault() and return false event methods not honored on Android 4.3 stock browser
PreventDefault() and return false event methods not respected on Android 4.3 stock browser
Jul 16, 2015
Hi @pukhalski - when doing some tests on one of the sites that I'm using tap on, I found an issue regarding the preventDefault() and return false event methods. They do not seem to be respected on the Android 4.3 stock browser; but other JS logic I'm writing in the .on('tap') function calls does get executed.
I don't have the device with me; but I will drop the specifics about the OS and browser version here. Will do some debugging tomorrow. An example from my code:
The text was updated successfully, but these errors were encountered: