I'm trying to change the background color of all the divs which have a distance of 100px or more relative to their parent's top.
I'm using:
$('.box').filter(function () {
return $(this).position.top > 99;
}).css('background', 'red');
Which doesn't seem to work.
You can check it out here: http://jsfiddle.net/68LQD/4/