$(function(){ $(window).scroll(function(){ if($(window).scrollTop() == 0){ $('#w_grid-1632362443645').removeClass('activeon'); }else { $('#w_grid-1632362443645').addClass('activeon'); } }) wow = new WOW( { animateClass: 'wow', offset: 100, callback: function(box) { console.log("WOW: animating <" + box.tagName.toLowerCase() + ">") } } ); wow.init(); document.getElementById('moar').onclick = function() { var section = document.createElement('section'); section.className = 'section--purple wow fadeInDown'; this.parentNode.insertBefore(section, this); }; })