Posts

Showing posts with the label Ajax

Ajax Loader

Image
To display loading symbol while ajax call, you can use the below code. Content Editor Code: <link href=" https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css " rel="stylesheet"/> <script src=" https://code.jquery.com/jquery-1.10.2.js "></script> <script src=" https://code.jquery.com/ui/1.10.4/jquery-ui.js "></script> <link href="/sites/<sitename>/SiteAssets/CSS/Style.css" rel="stylesheet" type="text/css"/> <script src=" /sites/<sitename> /SiteAssets/Scripts/Test.js"></script>   <div class="modal" id="modalDiv">&#160;</div> Style.css Code: .modal {     display:    none;     position:   fixed;     z-index:    1000;     top:        0;     left:       0;     height:...