blob: 8badf8e997e1f253688d209e63ff5f6699e2d6d4 (
plain)
1
2
3
4
5
6
7
8
9
|
let btn = document.querySelector(".neon-button");
const isMobile = window.matchMedia("only screen and (max-width: 760px)").matches;
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|BB|PlayBook|IEMobile|Windows Phone|Kindle|Silk|Opera Mini/i.test(navigator.userAgent))
btn.setAttribute("href", "rannak/noMobiles");
if (isMobile)
btn.setAttribute("href", "rannak/noMobiles");
|