'a'.charCodeAt(0) // 97
'F'.charCodeAt(0) // 70
97 >= 70 // true
когда то для меня это тоже было сюрпризом )
var postion = $('#target').offset().top;
var height = $('#target').height();
$(document).on('scroll', function () {
var scroll = $(document).scrollTop();
if (scroll > postion && scroll < (postion + height) ) {
$('body').addClass('bg');
} else {
$('body').removeClass('bg');
}
});