Thursday, 14 August 2014

jQuery Dialog


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<script src="https://code.jquery.com/jquery.js" type="text/javascript"></script>
<%--Download jquery-ui.js and jquery-ui.css--%>
<script src="jquery-ui.js"></script>
<link href="jquery-ui.css" rel="stylesheet" />
<style>
</style>
<script>
$(function () {
$("#btnOpen").click(function () {
loadingSpinner();
});
$("#closeIt").click(function () {
closingSpinner();
});
function loadingSpinner() {
$("#dvDialog").dialog({
modal: true,
height: 200,
width: 200,
open: function (event, ui) {
$(this).parent().children().children('.ui-dialog-titlebar-close').hide();
$(".ui-dialog-titlebar").hide();
},
});
}
function closingSpinner() {
$("#dvDialog").dialog('close');
}
});
</script>
</head>
<body>
<div id="dvDialog" title="" style="display: none">
<img class="spinner" style="margin-top: 50px; margin-left: 50px;" src="Spinner.gif" />
<a id="closeIt" href="#" class="close">Close it</a>
</div>
<input class="btn" id="btnOpen" value="Submit" type="button" />
</body>
</html>
view raw gistfile1.html hosted with ❤ by GitHub