0

This is a quiz app where several quiz can be added to a particular topic. However, when I click on the button to start the quiz, the modal asking for confirmation pops up but in a darkened way. It does not allow me to select any of the option.

What is the issue here?

7
  • A snapshot would help in a great way. Commented Jun 18, 2021 at 7:52
  • Your modal backdrop is hijacking your actual Modal popup content. Commented Jun 18, 2021 at 8:01
  • An old answer, but you'll get the point : stackoverflow.com/questions/10636667/… Commented Jun 18, 2021 at 8:07
  • @MukulKapoor, thanks but I've tried, it aint working. Actually, I noticed something. I have an {% include 'footer.html' %}. If I remove it, everything goes fine. However, if i put it after the footer, still it does not work. :(
    – Alpha
    Commented Jun 18, 2021 at 8:21
  • Try placing your Modal code outside of your main content. Place it just before the closing Body tag. Commented Jun 18, 2021 at 8:34

0