Torna al Thread
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link rel="stylesheet" href="Js/themes-1.10.1/themes/ui-lightness/jquery-ui.css" />
<script type="text/javascript" src="Js/jquery-1.9.1.js"></script>
<script type="text/javascript" src="Js/jquery-ui-1.10.1.custom.js"></script>
<script type="text/javascript" src="Js/jquery-ui-1.10.1.custom.min.js"></script>
<link href="App_Themes/TryCss/chrome.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(function () {
$("#dialog").dialog({
autoOpen: false,
show: {
effect: "blind",
duration: 1000
},
hide: {
effect: "explode",
duration: 1000
}
});
$("#opener").click(function () {
$("#dialog").dialog("open");
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="dialog" title="Basic dialog">
<p>This is an animated dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
<button id="opener">Open Dialog</button>
</form>
</body>
</html>