В соответствии с соглашением я импортирую файл инициализации JavaScript на свои страницы jQuery Mobile
init.js
$( document ).bind( "mobileinit", function() {
// Make your jQuery Mobile framework configuration changes here!
$.support.cors = true;
$.mobile.allowCrossDomainPages = true;
$.mobile.fallbackTransition.slideout = "none"
});
page.html
<script src="jquery.js"></script>
<script src="init.js"></script>
<script src="jquery-mobile.js"></script>
Почему-то удаляются все стили из jQuery Mobile CSS?