m0s
m0s

Reputation: 4280

How to prevent jQuery mobile's automatic page styling?

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

Answers (1)

Liam
Liam

Reputation: 2837

You can ask jquery mobile not to touch your widget by putting the attribute below:

data-role="none"

Upvotes: 6

Related Questions