I want the Alert message hello to be displayed when the vertical scrolling on the page exceeds 100px. I tried doing but it didn’t work.
JavaScript Code:
function fixSearch(body) {
var a=body.scrollTop;
if(a>100)
{
alert("Hello");
}
}
HTML Code
<body onscroll="fixSearch(this)">
---------------------------
---------------------------
---------------------------
</body>
Try replacing
body.scrollTopwithdocument.body.scrollTop, it should work