What is my screen resolution?

Your screen resolution is:

 

How is my screen resolution obtained?

Obviously without infringing your privacy. It is simply obtained through a command that runs in your browser.

The code consists of three lines of Javascript:

var my_height = screen.height;
var my_width = screen.width;
document.write( my_width + " x " + my_height);

{.Maui}