Your screen resolution is currently set at .
If you are on a mobile device that has landscape views and portrait views, you can hit rotate the device then click the “screen resolution” link and it will attempt to detect the new resolution that you are in.
Display Code
<span id="resolutionNumber"></span>
Trigger Code
<script type="text/javascript">
<!--
height = screen.height;
width = screen.width;
res = document.getElementById ('resolutionNumber');
res.innerHTML = width + " X " + height;
if (res == null)
{
alert ("Loading...");
}
//-->
</script>