I want to create a splash screen when i click a save button showing message "Your data are being save. Please wait...". Im using MVC 5 for my development.
Below i created a div:
<div id="divSplash" style="margin: 0px; padding: 0px; position: fixed; right: 0px;
top: 0px; width: 100%; height: 100%; background-color: #ffffff; display:none">
<p style="position: absolute; top: 30%; left: 45%; color: White;">
Your data are being save. Please wait...<img src="../../Images/ajax-loading.gif">
</p>
</div>
Really appreciate if your guys can help to solve it. Thank you.