1 2 3 4 5 6 7 8 9 10 11 12 13 |
$('#contentLeft li').click(function(){ var txt; var r = confirm("Press a button!"); if (r == true) { txt = "You pressed OK!"; $(this).remove(); //deletes element from dom } else { txt = "You pressed Cancel!"; } |
another version
1 2 3 4 5 6 7 8 9 10 11 12 13 |
$('#contentLeft li').click(function(){ var thetext = $(this).html(); var txt; var r = confirm("Do you want to delete \n" + thetext + " ?"); if (r == true) { txt = "You pressed OK!"; $(this).remove(); } else { txt = "You pressed Cancel!"; } |