views:

150

answers:

1

Hello,

Wondering why I get this alert to work in Firefox and Safari but not Opera or IE... any insight much appreciated!

    $().scroll(function() {
    var scrolledpx = parseInt($().scrollTop());  

    if (scrolledpx < 375) {
        alert('true');
    }
});
A: 
 $(window).scroll(function() {
    var scrolledpx = parseInt($(window).scrollTop());  

    if (scrolledpx < 375) {
        alert('true');
    }
});
j-man86