[thelist] Javascript: OK? Cancel!

Chris Marsh chrism at puffofsmoke.net
Thu Feb 14 05:40:01 CST 2002


> Dunno if this can be done - I want to pop up a javascript alert with
> an 'OK' and 'Cancel' button. Of course the cancel button lets the
> page just kinda sit there, whereas 'OK' proceeds to submit the form.

if(confirm("Do you REALLY wish to submit this form?")) {
	document.forms[0].submit();
}

HTH

Chris Marsh



More information about the thelist mailing list