add the following script before including jquery.mobile.js
|
1 2 3 |
$(document).bind("mobileinit", function() { $.mobile.ignoreContentEnabled = true; }); |
Then you need to include data-enhance=”false” to your page where you want to stop jQuery mobile js apply styles
|
1 2 3 4 5 6 7 8 |
<div data-enhance="false"> <input type="checkbox" name="chk1" id="chkb1" checked /> <label for="<code>chkb1</code>">Checkbox</label> <input type="radio" name="test_radio" id="<code><code>radio_btn1</code></code>" checked /> <label for="<code>radio_btn1</code>">Radio Button test</label> </div> |