<?php if ($getCookieLang === "en") : ?>
<script>
$('#bo_cate ul li a, #bo_gall .gall_text_href a').each(function () {
let text = $(this).text();
//적용사례
if (text === '전체') {
$(this).text(text.replace(text, 'All'));
}
if (text === '제품') {
$(this).text(text.replace(text, 'Product'));
}
if (text === '공사') {
$(this).text(text.replace(text, 'Construction'));
}
if (text === '기타') {
$(this).text(text.replace(text, 'Etc.'));
}
});
</script>
<? endif ?>
728x90