to PC
function redirectToPC(tagart) {
var UA = navigator.userAgent;
if (UA.indexOf("iPhone") <= -1 && UA.indexOf("Android") <= -1) {
location.href = tagart + location.search;
}
}
to Mobile
function redirectToMobile(tagart) {
var UA = navigator.userAgent;
if (
(UA.indexOf("iPhone") > -1 || UA.indexOf("Android") > -1) &&
screen.height > screen.width
) {
location.href = tagart + location.search;
}
}