set-backurl.js 209 Bytes
let $ = require('yoho-jquery');

$('.nav-back').on('click', function(e) {
    let channel = window.cookie('_Channel') || 'boys';

    e.preventDefault();

    location.href = '//m.yohobuy.com/' + channel;
});