I am trying to have a spinner animation on button
click. This Works fine from a page when there is no Bootstrap Modal Open. But when a Bootstrap Modal is Open, the Spinner hides behind the Bootstrap Modal
I have tried this
Expecting the Spinner to be above the Modal Bootstrap
Bootstrap “spinners” can be used to show the loading state in your projects. They're built only with HTML and CSS, meaning you don't need any JavaScript to create them.
Change the place of your loadingoverlay
. the loadingoverlay
has to be in the modal.
Example
Need to also give the setInterval for javascript spinner.
You have to give a bigger z-index
to the Loading Spinner, than the Modal's z-index
.
Let's try this:
#loadingoverlay {
position: fixed;
top: 0;
z-index: 9999;
width: 100%;
height: 100%;
display: none;
background: rgba(0,0,0,0.6);
}
Provide the z-index value. Thats creating issue
z-index: 9999;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With