Reputation: 4280
jQuery mobile automatically adds classes to all elements on my page on loading... this really messes up the jQuery UI widgets I have on the page. Is there any way to prevent jQuery mobile from automatically adding classes to my HTML elements? I only wan't some of the jQuery mobile widgets on my page, and I want to specify them explicitly.
Upvotes: 7
Views: 4481
Reputation: 2837
You can ask jquery mobile not to touch your widget by putting the attribute below:
data-role="none"
Upvotes: 6