This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/libraries/jquery.ui/tests/visual/dialog.html

31 lines
786 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>Simple Dialog</title>
<link rel="stylesheet" href="all.css" type="text/css" media="screen">
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
<script type="text/javascript" src="../../ui/ui.core.js"></script>
<script type="text/javascript" src="../../ui/ui.dialog.js"></script>
<script type="text/javascript" src="../../ui/ui.draggable.js"></script>
<script type="text/javascript" src="../../ui/ui.resizable.js"></script>
<script type="text/javascript">
$(function() {
$("#dialog").click(function() {
$("<div/>").dialog();
});
});
</script>
</head>
<body>
<ul class="plugins">
<li>
Dialog
<div id="dialog">
<button>Open</button>
</div>
</li>
</ul>
</body>
</html>