Render dialog as a full page
Description
The following code shows how to render dialog as a full page.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.7.1.js'></script>
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css">
</head><!--from w w w . ja va 2 s . c om-->
<body>
<div data-role="dialog">
<div data-role="header" data-position="fixed">
<h1>test</h1>
</div>
<div data-role="content">I am not a dialog :(</div>
<div data-role="footer" data-position="fixed">
<h4>test</h4>
</div>
</div>
</body>
</html>