Device Specific Data & Functions
- Device Specific Data & Functions
Getting Device Specific Data Using navigator
Properties | Description with Sample Value |
---|---|
navigator.appVersion |
The appVersion property returns the version information of the browser. Sample Value : 5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36 |
navigator.cookieEnabled |
Returns false if setting a cookie will be ignored and true otherwise. Sample Value : true |
navigator.deviceMemory |
Returns the amount of device memory in gigabytes. This value is an approximation given by rounding to the nearest power of 2 and dividing that number by 1024. Sample Value : 8 |
navigator.hardwareConcurrency |
Returns the number of logical processor cores available. Sample Value : 4 |
navigator.maxTouchPoints |
Returns the maximum number of simultaneous touch contact points are supported by the current device. Sample Value : 0 |
navigator.platform |
Returns a string representing the platform of the browser. Do not rely on this function to return a significant value. Sample Value : Win32 |
navigator.userAgent |
Returns the user agent string for the current browser. Sample Value : Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36 |
navigator.userAgentData.mobile |
Detects if device is mobile. Sample Value : false |
navigator.userAgentData.brands |
Sample Value : [{"brand":"Google Chrome","version":"89"},{"brand":"Chromium","version":"89"},{"brand":";Not A Brand","version":"99"}] |
Example: Click Here
Note:
navigator.userAgentData.mobile
andnavigator.userAgentData.brands
doesn’t work on mobile devices*
Detect Device Type
Below function code will help you detect the device type i.e wether it is Android, iPhone or iPad.
function getDeviceType() {
let deviceData = navigator.userAgent.toLocaleLowerCase().toString();
// deviceData has all the userAgent data in lowercase string format
// Now we can check for keywords like - android, iphone and ipad
let deviceType
deviceData.indexOf('android') != -1 ? deviceType = "Android" : deviceType;
deviceData.indexOf('iphone') != -1 ? deviceType = "iPhone" : deviceType;
deviceData.indexOf('ipad') != -1 ? deviceType = "iPad" : deviceType;
deviceData.indexOf('windows') != -1 ? deviceType = "Windows" : deviceType;
return deviceType;
}
let deviceType = getDeviceType();
Example: Click Here
devicePixelRatio
Property
resolution in physical pixels
devicePixelRatio = -------------------------------
resolution in CSS pixels
The devicePixelRatio
of Window interface returns the ratio of the resolution in physical pixels to the resolution in CSS pixels for the current display device. This value could also be interpreted as the ratio of pixel sizes: the size of one CSS pixel to the size of one physical pixel. In simpler terms, this tells the browser how many of the screen’s actual pixels should be used to draw a single CSS pixel.
This is useful when dealing with the difference between rendering on a standard display versus a HiDPI or Retina display, which use more screen pixels to draw the same objects, resulting in a sharper image.
You can use window.matchMedia()
to check if the value of devicePixelRatio
changes (which can happen, for example, if the user drags the window to a display with a different pixel density).
Example: Click Here
Detect Orientation or Orientation Change
You can detect orientation change using $(window).on("orientationchange")
You can detect orientation using below code
if(window.innerHeight > window.innerWidth){
//portrait
}
if(window.innerWidth > window.innerHeight){
//landscape
}
Another code to detect the orientation is as given below
screen?.orientation?.type
Above property will give you values like "landscape-primary"
and "portrait-primary"
Example: Click Here
window
, document
And screen
Properties
Property | Description |
---|---|
window.innerHeight |
Property returns the interior height of the window in pixels, including the height of the horizontal scroll bar, if present |
window.innerWidth |
Property innerWidth returns the interior width of the window in pixels. This includes the width of the vertical scroll bar, if one is present |
window.outerHeight |
Property returns the height in pixels of the whole browser window, including any sidebar, window chrome, and window-resizing borders/handles |
window.outerWidth |
Property returns the width of the outside of the browser window. It represents the width of the whole browser window including sidebar (if expanded), window chrome and window resizing borders/handles |
document.documentElement.offsetHeight |
Property returns the height of an element, including vertical padding and borders, as an integer |
document.documentElement.clientHeight |
Property is zero for elements with no CSS or inline layout boxes; otherwise, it’s the inner height of an element in pixels. It includes padding but excludes borders, margins, and horizontal scrollbars (if present) |
document.documentElement.scrollHeight |
Property is a measurement of the height of an element’s content, including content not visible on the screen due to overflow |
document.documentElement.offsetWidth |
Property returns the layout width of an element as an integer |
document.documentElement.clientWidth |
Property is zero for inline elements and elements with no CSS; otherwise, it’s the inner width of an element in pixels. It includes padding but excludes borders, margins, and vertical scrollbars (if present) |
document.documentElement.scrollWidth |
Property is a measurement of the width of an element’s content, including content not visible on the screen due to overflow |
document.documentElement.scrollTop |
Property gets or sets the number of pixels that an element’s content is scrolled vertically |
document.documentElement.scrollLeft |
Property gets or sets the number of pixels that an element’s content is scrolled from its left edge |
screen.availHeight |
Property returns the height, in CSS pixels, of the space available for Web content on the screen. Since Screen is exposed on the Window interface’s window.screen property, you access availHeight using window.screen.availHeight |
screen.availWidth |
Property returns the amount of horizontal space (in pixels) available to the window |
screen.colorDepth |
Property returns the color depth of the screen. Per the CSSOM, some implementations return 24 for compatibility reasons. See the browser compatibility section for those that don’t |
screen.height |
Property returns the height of the screen in pixels |
screen.pixelDepth |
Returns the bit depth of the screen. Per the CSSOM, some implementations return 24 for compatibility reasons |
screen.width |
Property returns the width of the screen in pixels |
window.scrollX |
The read-only scrollX property of the Window interface returns the number of pixels that the document is currently scrolled horizontally. This value is subpixel precise in modern browsers, meaning that it isn’t necessarily a whole number |
window.scrollY |
The read-only scrollY property of the Window interface returns the number of pixels that the document is currently scrolled vertically. This value is subpixel precise in modern browsers, meaning that it isn’t necessarily a whole number |
window.screenLeft |
Property returns the horizontal distance, in CSS pixels, from the left border of the user’s browser viewport to the left side of the screen |
window.screenTop |
Property returns the vertical distance, in CSS pixels, from the top border of the user’s browser viewport to the top side of the screen |
window.screenX |
Property returns the horizontal distance, in CSS pixels, of the left border of the user’s browser viewport to the left side of the screen |
window.screenY |
Property returns the vertical distance, in CSS pixels, of the top border of the user’s browser viewport to the top edge of the screen |
Example: Click Here
Window Height Vs Document Height
Window Height | Document Height |
---|---|
$(window).height() gets you an unit-less pixel value of the height of the (browser) window aka viewport |
$(document).height() returns an unit-less pixel value of the height of the document being rendered |
With respect to the web browsers the viewport here is visible portion of the canvas(which often is smaller than the document being rendered) | It is the actual document height. Also if the actual document’s body height is less than the viewport height then it will return the viewport height instead |
$(window).height()
=document.documentElement.clientHeight
andwindow.innerHeight
!=document.documentElement.clientHeight
Window Width Vs Document Width
Window Width | Document Width |
---|---|
$(window).width() gets you an unit-less pixel value of the width of the (browser) window aka viewport |
$(document).width() returns an unit-less pixel value of the width of the document being rendered |
With respect to the web browsers the viewport here is visible portion of the canvas(which often is smaller than the document being rendered) | It is the actual document width. Also if the actual document’s body width is less than the viewport width then it will return the viewport width instead |
$(window).width()
=document.documentElement.clientWidth
andwindow.innerWidth
!=document.documentElement.clientWidth
window.innerHeight
Vs window.outerHeight
window.innerHeight |
window.outerHeight |
---|---|
The window.innerHeight property returns the height of a window’s content area. |
The window.outerHeight property returns the outer height of the browser window, including all interface elements (like toolbars/scrollbars) |
Changes when you resize the window or zoom in / zoom out | Stays the same when you resize the window or zoom in / zoom out |
window.innerWidth
Vs window.outerWidth
window.innerWidth |
window.outerWidth |
---|---|
The window.innerWidth property returns the width of a window’s content area. |
The window.outerWidth property returns the outer width of the browser window, including all interface elements (like toolbars/scrollbars). |
Changes when you resize the window or zoom in / zoom out | Stays the same when you resize the window or zoom in / zoom out |
Count Touch Points Using event.touches.length
You can use below code to count the number of active touch points on your screen
// Below Code Updates The Touch Points on touchstart (i.e when you start touching screen)
$("body").on("touchstart", function (event) {
if (event.type == "touchstart") {
$("#touchpoints").text(event.touches.length);
$("#bg").text(event.touches.length);
}
});
// Below Code Updates The Touch Points on touchend (i.e when you stop touching screen)
$("body").on("touchend", function (event) {
if (event.type == "touchend") {
$("#touchpoints").text(event.touches.length);
$("#bg").text(event.touches.length);
}
});
For Live Example of the above code click here