OnClick prompt with buttons for 'Ok' or 'Cancel' without a plugin?
Hi,
I'm sure this is really simple, but I can't figure out how to prompt a user before they delete an entry in my database-driven website.
I have this:
- $("a.deleteprompt").click(function()
- alert("Are you sure you want to delete this entry?");
- });
But the only option there is 'Ok'. I need to set this up with a 'Cancel' option as well, but don't want to use a plugin like Impromptu to do so as it's overkill.
Can anyone help?
Thanks,
osu