Close Lightbox onClick event

I added a lightbox on my page after 2 sec of timer. So, in this lightbox, I have added a form in which I am getting details of Name and Contact number. I want user to close this lightbox after clicking on the submit button ONLY, which means, they cannot close the lightbox using, “close” button, the cross icon on the top OR outside of the lightbox.
They can only close the lightbox once they fillout details and click on the submit button.

Help me out with this :frowning:

Check here - > https://www.wix.com/corvid/reference/wix-window/lightbox-obj/close

import wixWindow from 'wix-window';
$w.onReady(function () {
 $w("#submitButton").onClick((event)=>{    //submit button
  wixWindow.lightbox.close();
 });
});