Page 1 of 1

Jquery Mobile

Posted: 03:38, 22 Mar 2016
by Horizontechno
Hello

I just test basic Jquery mobile page , and the page display without Jquery display ?

I have try to put the Jquery min files on my souces , but same result ? i dont have error in the editor log ?

This is my test source

Thanks

Alain

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>

<div data-role="page" id="pageone">
<div data-role="main" class="ui-content">
<h2>My Email Account</h2>
<ul data-role="listview" data-inset="true">
<li><a href="#">Inbox<span class="ui-li-count">25</span></a></li>
<li><a href="#">Sent<span class="ui-li-count">432</span></a></li>
<li><a href="#">Trash<span class="ui-li-count">7</span></a></li>
</ul>
</div>
</div>

</body>
</html>

Re: Jquery Mobile

Posted: 04:42, 22 Mar 2016
by alex
Hi!

Our services are https, so you need to use the https:// scheme for the CDN hosted versions, to
avoid the cross-protocol (CORS) violation that occurs otherwise.
https://code.jquery.com/mobile/

Alternatively, you need to dl and bundle the jquery files in the project!

best of luck

axl

Re: Jquery Mobile

Posted: 00:07, 23 Mar 2016
by Horizontechno
Work Now

Thanks for the great support !

Alain