Currently, I am working on an app using Cordova. Within this project, I have incorporated jQuery Mobile's CSS and JS along with Materialize CSS and JS. However, I recently encountered an issue after integrating the Materialize files. Specifically, when I utilize a select
element to choose values, the dropdown does not appear. Strangely enough, upon removing the Materialize CSS file, the dropdown functions as expected. How can I resolve this issue without having to remove any of the files?
<select>
<option> test </option>
<option> test1 </option>
<option> test2 </option>
</select>
I attempted to troubleshoot by testing a basic select example.
Your help is greatly appreciated.