<html>tag
directly.
jQuery Mobile CDN:
[html]
<head>
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1" />
<!-- jQuery CDN hosted files -->
<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.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
[/html]
<head>
element has viewport <meta>
tag that specifies design flexibility and how browser is responsive to device dimensions and zoom level.initial-scale=1
when the page undergoes loading initially by the browser.width=device-width
to fit to the screen-width of the device.<html>
tag:
[html]
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- jQuery local -->
<link rel="stylesheet" type="text/css" href="….\jquery.mobile-1.4.5">
<script type="text/javascript" src="….\jquery.mobile-1.4.5"></script>
<script type="text/javascript" src="…\jquery.mobile"></script>
</head>
[/html]