I am using the jquery selectmenu function within my webpage and it does not seem to work properly on ios browsers.
After I select my menu item the menu disappears but my change: function does not fire at all. It simply just hides the menu again.
My code is the following:
$('#adultMenu').selectmenu({
change: function() {
adultval = $(this).val() + ' Adults. ';
var inputvalue = adultval + childval + youthval + infantval;
$('#personInput').val(inputvalue);
}
});
I think this is quite a common issue on iOS but I am yet to find the answer after a long time reading the forums.
Any help would be great!