To the Top

What is My Screen Size? The Micro Javascript Page

Buy Me A Coffee

Online tool to find your screen resolution

Your Screen Size is:

The above numbers are your screen/monitor resolution (in width and height, unit of pixels).

Detailed Screen Resolution Information

This micro web page finds your monitor/screen resolutions so you don't have to right click, properties, settings etc to find out the screen resolution.

Underneath Javascript code

Simple as that: the width and height attributes of the screen object.
var height = screen.height;
var width = screen.width;
var res = document.getElementById ('sz');
sz.innerHTML = width + " X " + height;

Information

This is a micro Javascript tool to check the screen resolution of any display devices e.g. desktop monitor, iPad, tablet, iPhone, MacBook.

The resolutions of any display devices are displayed as the number of pixels in x and y dimensions e.g. a resolution 1920 x 1080 means the 1920 pixels is width and 1080 pixels is height of the screen.

Your current screen resolution may be less than max supported screen resolution. So you can change your screen resolution from your device settings.

Share: List of Many Other Online Tools