$(".result_table").hide(); $(".searchBtn").click(function(){ $(".result_table").fadeIn('fast'); }); $(window).bind('scroll', function () { if ($(window).scrollTop() > 50) { $('.topAction').addClass('topAction_fixed'); } else { $('.topAction').removeClass('topAction_fixed'); } });