I can get the size of the browser window through the following code:
$(window).height();
However, this method takes the current size.
I would like to know if I can get the full size of my screen even if I resize it.
I can get the size of the browser window through the following code:
$(window).height();
However, this method takes the current size.
I would like to know if I can get the full size of my screen even if I resize it.
I've found that with this JavaScript code I get the height and width:
var altura = screen.height;
var largura = screen.width: