Omschrijving
// Viewport height checker
//—————
var windowHeight = window.innerHeight;
if ( windowHeight > 800)
{
alert(‘Viewport hight:’ + windowHeight);
// alert(‘Viewport hight:’ + windowHeight);
document.getElementsByClassName(“my-element”)[0].style.color = “blue”;
}
else {
// alert(‘Viewport hight is heel hoog:’ + windowHeight);
}