Skip to content Skip to sidebar Skip to footer

Onclick Not Working On Ios11

I have the following function working on any devices except ios 11 and don't know why, I have tried some solutions found here but it doesnt work, like : change the selector, add 'c

Solution 1:

Try jquery bind function.

for example:

$( "#foo" ).bind( "click", function() {
    alert( "User clicked on 'foo.'" );
});

Post a Comment for "Onclick Not Working On Ios11"