Archive for September, 2011
jQueryMobile
Implementing jQueryMobile in .NET Framework v2.0
Create a new MVC 2.0 project
Modify the Views\Shared\Site.master file to include the following header includes:
<link
rel=”stylesheet” href=”http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css”
/>
<script
type=”text/javascript” src=”http://code.jquery.com/jquery-1.6.1.min.js”></script>
<script
type=”text/javascript” src=”http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js”></script>
Modify the div footer with the following markup:
<div
data-role=”footer” id=”footer” data-theme=”a”>
<h4>Page Footer</h4>
</div>
