T
Todd
A window may or may not be created by me and JavaScript. When the "OK"
button is pressed, I do a JavaScript Close(), but I want to make that
conditional on whether the user is in a window called "pdfWin".
Currently the button is created with
<input name="btnContinue" type="button" onClick="MM_closeWindow()"
value="OK">
And my MM_closeWindow() is
function MM_closeWindow() {
window.close();
}
Not that is really matters, all of this is in my PHP code.
Thank you......
Todd
button is pressed, I do a JavaScript Close(), but I want to make that
conditional on whether the user is in a window called "pdfWin".
Currently the button is created with
<input name="btnContinue" type="button" onClick="MM_closeWindow()"
value="OK">
And my MM_closeWindow() is
function MM_closeWindow() {
window.close();
}
Not that is really matters, all of this is in my PHP code.
Thank you......
Todd