Your screen resolution is currently set at .
If you are on a mobile device that has landscape views and portrait views, you can rotate the device then click the “screen resolution” link and it will attempt to detect the new resolution that you are in. The information will let youknow if you will be experiencing issues using Snap Apps in Windows 8 or the Windws Store.
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>