I am using jQuery Mobile, and for now, I have the following at the bottom of my <head>
tag:
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<title>help</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
</head>
Since the user may have a very bad network access, I hope the user can load my page faster, even though the JavaScript or CSS is not ready.
Will it work if I:
Put the
<head>
after<body>
Put the
<script>
in the end of<body>