Created
August 17, 2017 15:35
-
-
Save mikecasas/d2c282066d110c2376bc58ff95e29da0 to your computer and use it in GitHub Desktop.
Delete script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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