How to calculate each and every page height from top to bottom in angular ? This syntax work in JavaScript but give error in angular
console.log( (document.height !== undefined) ? document.height : document.body.offsetHeight+'px');
How to calculate each and every page height from top to bottom in angular ? This syntax work in JavaScript but give error in angular
console.log( (document.height !== undefined) ? document.height : document.body.offsetHeight+'px');
Try this instead:
console.log(window.innerHeight);