I'm looking for a way to incorporate Jquery Mobile UI elements into my cordova app, but I'm running into a problem with being unable to access JQuery Mobile data-roles due to the ONSEN ui(angular) routing methods.
Here's an example of the HTML I would like Jquery mobile to render out:
<div data-role="collapsible">
<h4>Lorem</h4>
<p>Lorem ipsum.</p>
</div>
I'm assuming I'm going to need to write an ONSEN UI directive to be able to pull this off, but I could really use some help here.
Posts like THIS are leading me in the right direction but I'm having trouble accomplishing this for ONSEN. What should I do?