Skip to main content

Search and Top Navigation

Ticket #4598: modal.html


File modal.html, 1.1 KB (added by Mikko Rantanen, June 12, 2009 09:55PM UTC)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html>
<head>

<script src="http://jquery-ui.googlecode.com/svn/tags/1.7.2/jquery-1.3.2.js" type="text/javascript"></script>
<script src="http://jquery-ui.googlecode.com/svn/tags/1.7.2/ui/ui.core.js" type="text/javascript"></script>
<script src="http://jquery-ui.googlecode.com/svn/tags/1.7.2/ui/ui.draggable.js" type="text/javascript"></script>
<script src="http://jquery-ui.googlecode.com/svn/tags/1.7.2/ui/ui.resizable.js" type="text/javascript"></script>
<script src="http://jquery-ui.googlecode.com/svn/tags/1.7.2/ui/ui.dialog.js" type="text/javascript"></script>
 
<link rel="stylesheet" href="http://jquery-ui.googlecode.com/svn/tags/1.7.2/themes/base/ui.all.css" />
 
<script>
    $(function() {
        $("div.modalDialog").dialog({ modal: true });
        $("div.futureDialog").dialog();
    });
</script>
</head>
<body>

<div class="modalDialog" title="Modal">
</div>

<div class="futureDialog" title="Floating">
</div>

</body>
</html>

Download in other formats:

Original Format