JavaScript Popup with Multiple Choices
Good morning all.
Upon clicking a hyperlink which will allow a user to edit a calendar entry, I want to prompt the user to see if he wants to edit the single calendar entry, the series (i.e. if the entry is part of a recurring series) or cancel.
So I'm strating out with a bit of typical code, window.confirm:
var strApproveYes=window.confirm("Are you sure you want to open this item?");
this provides two options for the user. Is it possible to add a 3rd option?
thank you.
|