How to add a title to a JavaScript Confirm dialog box.
843840Sep 4 2008 — edited Sep 4 2008function confirmDelete() {
var msg = "Do you want to continue removing the items ?";
return confirm(msg);
}
Presently it says http://locahost:8080/says etc on the title bar for the dialog box. Instead I want to set the title as "Confirm Delete". How can I do this?