Jquery Mobile: How To Re-render Select Box?
First time, When I load page, my select box is empty: Then I make ajax call and get the json data for above
Solution 1:
Never mind!
I should check documentation properly:
//refresh value
$('#select').selectmenu('refresh');
//refresh and force rebuild
$('#secondaryTitle').selectmenu('refresh', true);
Post a Comment for "Jquery Mobile: How To Re-render Select Box?"