
Jumbo99 adalah [{"childCategoryName":"Oxrashoan Tinju-Bela Mma","childCategoryUrl":"//thelovetrep.com/jual-tinju-bela-diri-mma/"},{"childCategoryName":"Golf Gym","childCategoryUrl":"//thelovetrep.com/golf/"},{"childCategoryName":"Bola Gym","childCategoryUrl":"//thelovetrep.com/sepak-bola/"},{"childCategoryName":"Basket Gym","childCategoryUrl":"//thelovetrep.com/basket/"},{"childCategoryName":"Voli Gym","childCategoryUrl":"//thelovetrep.com/voli/"},{"childCategoryName":"Cricket Gym","childCategoryUrl":"//thelovetrep.com/cricket/"},{"childCategoryName":"Rugby Gym","childCategoryUrl":"//thelovetrep.com/rugby/"},{"childCategoryName":"Takraw Gym","childCategoryUrl":"//thelovetrep.com/sepak-takraw/"},{"childC
.breadcrumb_list {
width: 1188px;
height: 48px;
border-bottom: 1px solid #0f0f0f;
margin: 0 auto;
overflow: hidden;
text-overflow: ellipsis;
}
.breadcrumb_list_empty {
height: 0;
border: none;
overflow: hidden;
}
.breadcrumb_list .breadcrumb {
padding-left: 0;
margin-left: -4px;
height: 48px;
vertical-align: middle;
display: inline-block;
white-space: nowrap;
}
.breadcrumb_list .breadcrumb .breadcrumb_item {
position: relative;
display: table-cell;
vertical-align: middle;
font-size: 13px;
font-weight: 300;
height: 48px;
}
.breadcrumb_list .breadcrumb .breadcrumb_item .breadcrumb_item_text {
vertical-align: middle;
padding: 0;
margin: 0;
line-height: 100%;
display: inline-block;
font-weight: 300;
}
.breadcrumb_list .breadcrumb .breadcrumb_item .breadcrumb_item_text .breadcrumb_item_anchor {
display: inline-block;
vertical-align: middle;
color: #1a9cb7;
padding: 0 4px;
font-size: 14px;
font-family: Roboto-Regular, Helvetica, Arial, sans-serif;
max-width: 200px;
white-space: nowrap;
line-h
eight: 16px;
overflow: hidden;
text-overflow: ellipsis;
}
.breadcrumb_list .breadcrumb .breadcrumb_item .breadcrumb_item_text .breadcrumb_item_anchor_last {
color: #a0a520;
max-width: none;
height: 16px;
line-height: 16px;
white-space: normal;
}
.breadcrumb_list .breadcrumb .breadcrumb_item .breadcrumb_item_text .breadcrumb_right_arrow {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACKUExURUxpcYGBgYGBgYWFhYCAgICAgICAgIKCgv///4GBgZWVlYyMjIGBgYCAgIKCgoGBgYGBgaqqqoODg7+/v4GBgZKSko6OjoGBgYWFhYGBgYSEhIGBgZmZmYCAgIGBgYGBgYCAgICAgIGBgYCAgICAgIiIiICAgIeHh4GBgYSEhIODg4GBgYGBgYCAgPLijmAAAAAtdFJOUwCS7jCDi/E1AbYMFJrrK9ToAycEugcJtBfYG64Fp+S+vb+god0e4SLcHyPgwPJLUkAAAAB6SURBVDjLY2AYYoCdkwu/AgVdHTG8Crj5dUVE8aqQkNQVl8GrQkpDV1oYrwpVbV1ZQbwq1OV0lTnwqhAS0OXBr4KPV5cRf3AwM+myEghRNl0WihQQsoKQIwl5U0tOVwmfvKYa/qCWUsEfWYSim2CCkddVFKMs0Q5aAABM4wlSQJ87

function htmlEncodePdp(input) {
var el = document.createElement("div");
el.innerText = input;
return el.innerHTML;
};
window.LZD = window.LZD || {};
window.LZD.updateBreadcrumb = function (list) {
if (!list || !list instanceof Array) {
return;
}
var parentNode = document.getElementById('J_breadcrumb');
while (parentNode.hasChildNodes()) {
parentNode.removeChild(parentNode.firstChild);
}
var size = list.length;
for (var i = 0; i
< size; i++) {
var item = list[i];
item.title = htmlEncodePdp(item.title);
var liNode = document.createElement("li");
liNode.className = 'breadcrumb_item';
if (i === size - 1) {
liNode.innerHTML = '
<
span class="breadcrumb_item_text">' +
'
<span class="breadcrumb_item_anchor breadcrumb_item_anchor_last">' + item.title + '
>' +
'
>';
} else {
if(item.url) {
item.url = window.location.host.indexOf('h5.lazada.') > -1 ? item.url.replace('www.lazada.', 'h5.lazada.') : item.url;
}
liNode.innerHTML = '
<span class="breadcrumb_item_text">' +
'
<a title="' + item.title + '" href="' + item.url + '" class="breadcrumb_item_anchor">' +
'
<
span>' + item.title + '
>' +
'
>' +
'
<