Created
April 26, 2018 18:42
-
-
Save FinalDestiny/e55d64cb87bd860aaf84e651ea6fa1d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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