mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Dialog Visual Test : Dialog option buttons OK Cancel</title>
|
|
<link rel="stylesheet" href="../visual.css" type="text/css" />
|
|
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css">
|
|
<script type="text/javascript" src="../../../jquery-1.4.2.js"></script>
|
|
<script type="text/javascript" src="../../../external/jquery.bgiframe-2.1.1.js"></script>
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.draggable.js"></script>
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.position.js"></script>
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.resizable.js"></script>
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.dialog.js"></script>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
$("#dialog").dialog({
|
|
buttons: {
|
|
"OK": function() { $(this).dialog('close'); },
|
|
"Cancel": function() { $(this).dialog('close'); }
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="dialog" title="Dialog Title">
|
|
<p>
|
|
Dialog Content
|
|
</p>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|