I\'m working on Phonegap app for Android and iOS. Most of the stuff works pretty well but I\'m experiencing a problem with tag. It\'s enhanced wi
I have tried all of your suggests with no luck. What i've ended up with is not the best solution, but it's better than the alternative, if nothing else will update the select box. I did it with jQuery like this:
$(".select_box").change(function() {
$(this).hide();
$(".select_box").show();
});
Bum, updated.
Please remember, that this is only a solution if nothing else will work.