Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save FinalDestiny/e55d64cb87bd860aaf84e651ea6fa1d8 to your computer and use it in GitHub Desktop.
Save FinalDestiny/e55d64cb87bd860aaf84e651ea6fa1d8 to your computer and use it in GitHub Desktop.
jQuery(document).ready(function(){
jQuery(".page:not(.home) #logo, .blog:not(.home) #logo").attr("src","http://justsellhomes.wpengine.com/wp-content/uploads/2018/04/jsh-dark.png");
jQuery(window).scroll(function () {
if (jQuery(document).scrollTop() != 0) {
jQuery('.page:not(.home) #logo, .blog:not(.home) #logo').attr('src', 'http://justsellhomes.wpengine.com/wp-content/uploads/2018/03/JSH-Logo.png');
} else
{
jQuery('.page:not(.home) #logo, .blog:not(.home) #logo ').attr('src', 'http://justsellhomes.wpengine.com/wp-content/uploads/2018/04/jsh-dark.png');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment