01-26-2019, 09:38 AM
Hi, mudmin
I needed to know how i get the right header, when i want JQM (jquery mobile) combined with JQ.
My mobile application is written in JQM.
The last version of JQM is not working properly with the used JQ version of US.
US works not proper with the older JQ what is needed for proper working of JQM
The result I needed for proper working with a JQM app is:
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.css">
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script type="text/javascript">
$(document).on('mobileinit', function() {
// JQM Initialization options
});
</script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
what do I have to do, to work?
I needed to know how i get the right header, when i want JQM (jquery mobile) combined with JQ.
My mobile application is written in JQM.
The last version of JQM is not working properly with the used JQ version of US.
US works not proper with the older JQ what is needed for proper working of JQM
The result I needed for proper working with a JQM app is:
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.css">
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script type="text/javascript">
$(document).on('mobileinit', function() {
// JQM Initialization options
});
</script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
what do I have to do, to work?