JSFiddle - React, Tailwind, and code Playground
by karan3112
HTML
<h1>Hello</h1>
<h1>Hello</h1>
<h1>Hello</h1>
<h1>Hello</h1>
<h1>Hello</h1>
<h1>Hello</h1>
<h1>Hello</h1>
<h1>Hello</h1>
<h1>Hello</h1>
<h1>Hello</h1>
<h1>Hello</h1>
<h1>Hello</h1>
<h1>Hello</h1>
JavaScript
var flag = true; //Global variable with default value True.
$(window).scroll(function () {
console.log(flag);
if ($(window).scrollTop() >= ($(document).height()-250) - ($(window).height()) && flag == true) {
more_options();
}
});
function more_options()
{
flag = false;
alert("hii");
}