NAME Widget.Dialog - Simple Dialog Library SYNOPSIS // Functional Example Widget.Dialog.alert('Alert!!!'); Widget.Dialog.confirm('Confirm!!!'); Widget.Dialog.prompt('Prompt!!!'); // OO-Style Example var dialog = new Widget.Dialog(); dialog.alert('Alert!!!'); // Getting input value Widget.Dialog.prompt('Input here.', { onOk: function(val) { alert(val); Widget.Dialog.close(); } }); DESCRIPTION Widget.Dialog is simple modal dialog library. like a alert, confirm and prompt. AUTHOR Masaki Komagata COPYRIGHT Copyright (C) 2006 Masaki Komagata All rights reserved. This is free software with ABSOLUTELY NO WARRANTY. You can redistribute it and/or modify it under the terms of the GNU General Public License version 2.