All pastes #2091502 Raw Edit

Stuff

public text v1 · immutable
#2091502 ·published 2011-10-19 16:30 UTC
rendered paste body
$(document).ready(function(){        
    $(window).bind('scroll', function(){
        $("#secondMenuOrnaments").toggle($(this).scrollTop() > 200);
    });
});

$(document).ready(function(){       
    $("#secondMenuOrnaments").hide();
});



//--=== MEREGE INTO ====--
// to happen when the below hides and show
//--================--

$(function() {
   var clonedHeaderRow;

   $("#full_area").each(function() {
       clonedHeaderRow = $(".persist-header");
       clonedHeaderRow
         .before(clonedHeaderRow.clone())
         .css("width", clonedHeaderRow.width())
         .addClass("floatingHeader");

   });

   $(window)
    .scroll(UpdateTableHeaders)
    .trigger("scroll");

});