Skip to content

Instantly share code, notes, and snippets.

@mikecasas
Created August 17, 2017 15:35
Show Gist options
  • Save mikecasas/d2c282066d110c2376bc58ff95e29da0 to your computer and use it in GitHub Desktop.
Save mikecasas/d2c282066d110c2376bc58ff95e29da0 to your computer and use it in GitHub Desktop.
Delete script
$(document).ready(function () {
$("a[rel='tooltip']").tooltip();
$("table tr:odd").addClass("AltBackgroundColor");
$(document).on("click", "#removeAccount", function () {
var accountNrb = $(this).data('id');
$(".modal-body #acctFunction").val(accountNrb);
var myMessage = "The account " + accountNrb + " will be deleted. Are you sure you want to delete this account?"
$('#deleteDisplayMessage').html(myMessage);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment