Skip to content

Instantly share code, notes, and snippets.

@fleeting
Created May 1, 2010 22:54
Show Gist options
  • Save fleeting/386733 to your computer and use it in GitHub Desktop.
Save fleeting/386733 to your computer and use it in GitHub Desktop.
$(".delete").click(function() {
$(this + " span").dialog({
resizable: false,
height: 140,
modal: true,
show: 'fold',
buttons: {
'Delete Time': function() {
localStorage.removeItem($(this).attr("rel"));
getAllItems();
$(this).dialog('close');
},
Cancel: function() {
$(this).dialog('close');
}
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment