Jquery not loading / running on WordPress home page
You have initialized the script twice. Here is the updated script: jQuery(document).ready(function($) { var $window = $(window), win_height_padded = $window.height() * 1.1, isTouch = Modernizr.touch; if (isTouch) { $(‘.revealOnScroll’).addClass(‘.animated’); } $window.on(‘scroll’, revealOnScroll); function revealOnScroll() { var scrolled = $window.scrollTop(), win_height_padded = $window.height() * 1.1; // Showed… $(“.revealOnScroll:not(.animated)”).each(function () { var $this = $(this), offsetTop = … Read more