Skill/html js css

bootstrap 이벤트

진열사랑 2024. 12. 17. 13:49

출처 : https://getbootstrap.com/docs/4.0/components/modal/

Modal

Use Bootstrap’s JavaScript modal plugin to add dialogs to your site for lightboxes, user notifications, or completely custom content.

getbootstrap.com

// 계좌 이체 조회 Modal close시
//bootstrap hidden.bs.modal
$("#divApproveModal").on("hidden.bs.modal", function() {
        $("#divUpdAcctTrns").hide();
            COMMON.Utils.fnFrmReset( "frmUpdAccountTransfer");
});