<script type="text/javascript" language="javascript">
        function closePopup() {
            window.opener.location.href = window.opener.location.href;
            if (window.opener.progressWindow) {
                window.opener.progressWindow.close()
            }
            window.close();
        }
    </script>



Take a button named as Close on the pop up and call above function the Close button click event

Comments (0)