I Have edited Sticky Footer script in this way:
<script type="text/javascript">
function stickyFooter(){
jQuery("#stickyFooter").css({position: "absolute",top:($(window).scrollTop()+$(window).height()-$("#stickyFooter").height())+"px"});
}
function myStickyFooter(){
jQuery("#stickyFooter").css({position: "absolute"});
jQuery("#stickyFooter").animate({
top:($(window).scrollTop()+$(window).height()-$("#stickyFooter").height())+"px"
}, 2000, function() {
});
}
jQuery(function(){
myStickyFooter();
jQuery(window)
.scroll(stickyFooter)
.resize(stickyFooter);
});
</script>
So, on firefox it works fine; on Chrome or Ie, it works .. conversely: stickyFooter appears from top to bottom page. Why? Thanks a lot!