How can I detect if the device is ONLY tablet? This script below is not working properly.
var ua = navigator.userAgent, tablet = /Tablet|iPad/i.test(ua);
alert("Tablet? " + tablet);
I don't want check if is mobile and use else to show tablet. I want only a function to confirm if is tablet. How can I do that? Thanks
If you want to just use vanilla javascript you can use the navigator API
const userAgent = navigator.userAgent.toLowerCase();
const isTablet = /(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(userAgent);
console.log(isTablet)
https://developer.mozilla.org/en-US/docs/Web/API/Window/navigator
But i'd suggest using a librray such as wurfl.io
https://web.wurfl.io/#wurfl-js
if (WURFL.is_mobile === true && WURFL.form_factor === "Tablet") {
// targetSmartPhoneDevices();
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With