Skip to content Skip to sidebar Skip to footer

Android 4, How To Close Select Panel On Change Event

On Android 4 the html select elements open a panel with a 'Done' button. User can pick one element and then click 'Done' to close the panel. The Javascript change event occurs when

Solution 1:

Calling "blur()" on the select-element works on my Phones: Android-Browser 4.1.2 and Mobile Safari 6.0

$('#mySelect').change(function(){
    this.blur();
});

Post a Comment for "Android 4, How To Close Select Panel On Change Event"