This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |