jQuery scroll > 50

HTML Code

Scroll down to change text color

Row to add scroll

Row to add scroll

CSS Code

JS / jQuery Code

$(window).scroll(function() {
  if (jQuery(document).scrollTop() > 50) {
	$("p").css("color","red");
  }
  else {
	$("p").css("color","black");
  }
});

PHP Code

Code Results:

Scroll down to change text color

Row to add scroll

Row to add scroll