hotmall-us.com Open in urlscan Pro
13.228.108.162  Public Scan

URL: https://hotmall-us.com/V3/common/assets/js/sgks.js
Submission: On December 20 via api from US — Scanned from US

Form analysis 0 forms found in the DOM

Text Content

$(function () {
    //查询订单
    $('#track_Order').on('click', function () {
        window.location = 'customer/getLogisticsInfo';
    })

    $('.fixed-top i').not('.service-icon').on('click', function () {
        if ((typeof isDetailPage != "undefined" && isDetailPage() || typeof isCheckoutPage != "undefined" && isCheckoutPage())&& typeof pageBack != "undefined" && pageBack/1 &&  typeof backHint == "function") {
            backHint(function () { 
                history.go(-2);
            });
        } else {
            history.go(-1)
        }
    })
    $('.back-home').on('click', function (e) {
        if ((typeof isDetailPage != "undefined" && isDetailPage() || typeof isCheckoutPage != "undefined" && isCheckoutPage())&& typeof pageBack != "undefined" && pageBack/1 &&  typeof backHint == "function"){
            var aTag = $(this).closest('a');
            if (aTag.length && aTag.attr("href")) {
                if (e && e.preventDefault) {
                    e.preventDefault();
                } else {
                    window.event.returnValue = false;
                }
                backHint(function () {
                    location.href = aTag.attr("href");
                });
            }
        }
        return;
    })
});