The following code snippet shows current screen resolution.

<script type="text/javascript">
document.write(window.screen.width + ' x ' + window.screen.height);
</script>
 

Leave a Comment