jquery mobile using script include
rather than using jsfiddle resource technique, manually refer to the relevant jquery.com/mobile js
by Andy Bulka
HTML
<!DOCTYPE html>
<html>
<head>
<title>jsFiddle Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">jsFiddle Demo</div>
<div data-role="content">Hello</div>
<div data-role="footer">The footer</div>
</div>
</body>
</html>