overdue-notice.js 217 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 var $notice = $('.installment-overdue-notice'); $('.repay-list .notice').on('click', function() { $notice.show(); return false; }); $('.think-ok, .mask-bg').on('click', function() { $notice.hide(); });