screen.width & screen.availWidth
Using JavaScript we can get the screen.width value of the user display screen. Here is the code.
document.writeln("width = " + screen.width + "<br>");
Your screen width value is ,
screen.availWidth
Getting the available width of the screen. Here is the code.
document.writeln(" Height = " + screen.availWidth + "<br>");
Here is your screen Available Width value ,
This article is written by plus2net.com team.
plus2net.com
|