irurzo
09/15/2022, 5:52 PMEric B
09/15/2022, 7:05 PMirurzo
09/15/2022, 7:21 PMirurzo
09/15/2022, 7:22 PMjQuery(document).ready(function() {
        pageInit();
    });
    function pageInit(context) {
        const fn = 'pageInit';
        try {
            console.log('test');
            jQuery('#billremaining').on('click', function () {
                let x = confirm('test');
                if  (!x) {
                    window.stop();
                }
            });
        } catch (error) {
            log.error({ title: `Error: ${fn}`, details: error });
        }
    };Eric B
09/15/2022, 8:18 PM