Answers for "add loader inside the modal"

0

add loader inside the modal

############### CSS ##################

#loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(img/preloader.gif) center no-repeat #fff;
}

############### HTML ###################

<div id="loading"></div>

<div class="modal fade" id="myModal" tabindex="-1" role="dialog" 
aria-labelledby="myModalLabel"></div>
Posted by: Guest on April-22-2021

Code answers related to "add loader inside the modal"

Browse Popular Code Answers by Language