Back

IsTablet

Hello World

Checks if the user device is a tablet.

app.IsTablet() → boolean

See Also: IsThings, IsChrome

Example - Check Tablet

function OnStart()
{
    tablet = app.IsTablet();
    app.ShowPopup( tablet, "Is Tablet:" );
}
    Copy     Copy All       Run