javascript - ExitPopup Script -
I am working on a website, but now I want a popup window to be opened whenever I see the page
Do anyone know two script and HTML code for this?
Try this code in your main file:
window.onunload = function () {window.open ('path to popup file', 'width = " 500 ", height =" 500 "'); };
Comments
Post a Comment