Collections:
Other Resources:
Generating Popup Windows as Confirmation Dialog Boxes
How to generate popup windows as confirmation dialog boxes?
✍: FYIcenter.com
If you want to generate a popup window as a confirmation dialog box, you can use the window.confirm() method. See the following JavaScript code outline:
<a href="javascript:pWindowConfirm();">Click your ...
...
<script language="JavaScript">
/*
* Popup Blocker Test - P_WINDOW_CONFIRM
* - Popup Windows in Forms of Confirmation Dialog Boxes
*
* A popup window shows up in the form of a confirmation
* dialog box. JavaScript codes implemented to call the
* confirm method.
*
* Version of 2007.01.01
* Download at http://sqa.fyicenter.com/tools/
* Copyright (C) 2007 FYIcenter.com. All rights reserved.
*/
function pWindowConfirm() {
fyicenterData = window.confirm('Continue to test with ...
}
</script>
You can also visit Popup Blocker Test - P_WINDOW_CONFIRM page to get the complete source code and to see how it works.
2007-01-17, ∼9819🔥, 0💬
Popular Posts:
What is the file extension .IFO on a DVD-Video disc? .IFO is the file extension used on a DVD-Video ...
How to add a password to stop other people editing my PowerPoint file? I want share a PowerPoint fil...
What are default Startup Programs on a Windows 7 Home Premium computer? If you are running a Windows...
What is causing the HTTP 403 (Forbidden) error when running PHP scripts with PHP CGI configuration? ...
How to install FireFTP? FireFTP is a Mozilla FireFox 2 add-on that provides FTP client functions on ...