javascript - Use different library instead of jQuery Mobile for <select> -


i've looked on place try , find way somehow disable jquery mobile's selectmenu widget can use 3rd party library <select></select>. in case, want use chosen library. there way can this, while still retaining rest of jquery mobile styling on page?

you can tell jqm ignore select adding data-role="none"

<select id="myselect" data-role="none" placeholder="select option..." >     <option value="">select option...</option>      <option value="1">option 1</option>                 <option value="2">option 2</option>        <option value="3">option 3</option>        <option value="4">option 4</option>    </select> 

here demo using selectize plugin select , other controls use jqm:

demo


Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

firemonkey - How do I make a beep sound in Android using Delphi and the API? -

jdbc - Not able to establish database connection in eclipse -