Home › Forums › JavaScript › Change Body Border color on Scroll › Reply To: Change Body Border color on Scroll
March 12, 2014 at 8:13 am
#165531
Participant
As a small performance improvement, might I suggest saving references to $(".corner")
and $(window)
outside of the scroll function? Otherwise I believe jQuery will perform that selection every time the scroll event fires, which is very unnecessary. So above the scroll function, have something like
var $corner = $(".corner"), $window = $(window);
..and then reference those inside the function.