jquery-mobile/docs/pages/dialog.html
2010-10-14 14:44:30 -04:00

27 lines
No EOL
790 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>jQuery Mobile Framework - Dialog Example</title>
<link rel="stylesheet" href="../../themes/default" />
<script type="text/javascript" src="../../js/all"></script>
</head>
<body>
<div data-role="page">
<div data-role="header" data-theme="d" data-position="inline">
<h1>Dialog</h1>
</div>
<div data-role="content" data-theme="c">
<h1>Delete page?</h1>
<p>This is a regular page, styled as a dialog. To create a dialog, just link to a normal page and include a transition and <code>data-rel="dialog"</code> attribute.</p>
<a href="docs-dialogs.html" data-role="button" data-theme="b">Sounds good</a>
<a href="docs-dialogs.html" data-role="button" data-theme="c">Cancel</a>
</div>
</div>
</body>
</html>