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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -