How can I show the alert when I have scrolled to the right 300px?
$('.container').scroll(function () {
if ($(this).scroll() === 300) { //
alert("You've scrolled 300 pixels.");
}
});
Can I get some help getting a callback without using jquery?