Created
January 2, 2015 14:22
-
-
Save mrofi/51a38093c6682f73684f to your computer and use it in GitHub Desktop.
Modal Delete Hidden Event
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
$('#modal-hapus').on('hidden.bs.modal', function() { | |
$(this).find('#nama-user').html('user'); | |
$(this).find('.alert').addClass('hide'); | |
$(this).find('.global-error').html(''); | |
$(this).find('.icon-spinner').addClass('hide'); | |
loadData(); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment