Here an example http://jsfiddle.net/EhLsT/
$(window).scroll(function () {
if ($(window).scrollTop() > $("#header").offset().top) {
$("#floating").show();
}
else {
$("#floating").hide();
}
});
I want to show my #floating after 450px scrollTop
I not sure if a understand right your question but il you wan to display
#floatingafter 450px try this :Simply change
$("#header").offset().topto$("#header").height()