document.onscroll = function(){
var what = document.querySelector("#id").getBoundingClientRect().top;
document.body.classList.toggle(
"class", what <= window.innerHeight
);
}
$(document).scroll(function(){
var what = $("#id").offset().top,
pos = $(window).height() + $(window).scrollTop()
$("body").toggleClass("class", what <= pos);
});