Answers for "window.width()"

4

JS get viewport width

//getting the viewport dimensions
var width= Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
var height = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
Posted by: Guest on July-31-2019
7

get page resolution jquery

$( window ).width()
Posted by: Guest on April-08-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language