JSFiddle - React, Tailwind, and code Playground
by timhuang
JavaScript
function isMobile() {
try{ document.createEvent("TouchEvent"); return true; }
catch(e){ return false; }
}
if(isMobile()){alert("mobile");}else{alert("not mobile");}
by timhuang
function isMobile() {
try{ document.createEvent("TouchEvent"); return true; }
catch(e){ return false; }
}
if(isMobile()){alert("mobile");}else{alert("not mobile");}