Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

gopireddy's avatar

popup close

Hi, I have one video popup if I click the popup means one video is coming if I click outside of the video popup the video has to close

0 likes
4 replies
Sinnbeck's avatar

@gopireddy Then show the code please. An easy solution is to add a div behind it and make that clickable. That is how modals normally work

Make overlay fill the whole page and make it close the modal on click

<div id="container">
   <div id="overlay"></div>
    <div id="modal-content">VIDEO</div>
</div>

Please or to participate in this conversation.