In order to load pages as facebook or twitter does at their sites, scrolling down, i have tried this with jquery:
$(window).scroll(function(){
if ($(window).scrollTop() == $(document).height() - $(window).height()){
//do something
}
}
And i am having troubles with Firefox. Not with Chrome and either with Safari (IE not tested yet).
If i use an "alert('xx')" inside the IF, Firefox crashes and i have to restart it.
I am using the Mac version of Firefox but i guess that's not an important fact.
Anyone have any idea about what's happening here? Thanks.

);at the end of the scroll function? – Chimoo Feb 27 '12 at 19:52)and;for the$(window).scroll();call. – pcperini Feb 27 '12 at 19:52