0

I want to change the logo on navigation bar when i scroll the page down.I am using a wordpress 'Striking Multiflex theme" installed

Gaurav Mehta
  • 11
  • 2
  • 7

1 Answers1

0

You can use jQuery $(window).scroll() event handler

$(window).scroll(function(){
        var height = $(window).height();
        var url = 'url to new image';
        if(height > 100){
           $('.site-logo').attr('src',url);  
        }

    })
Parth Mahida
  • 604
  • 1
  • 5
  • 19