Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Hey need to solve a very quick issue. I have the following script:

jQuery(function($){ 
    $(window).scroll(function (){
        if ($(this).scrollTop() > 1){ 
            $('.logo-customizer').attr('src','http://13.36.14.143/wp-content/uploads/2021/01/cropped-ssssssss-1.png');
        }
        if ($(this).scrollTop() < 1000){ 
            $('.logo-customizer').attr('src','http://13.36.14.143/wp-content/uploads/2021/01/cropped-ssssssss.png');
        }
    })
});

And I want that when i scroll down the page, the image gets changed. For now, the image gets changed, but it gets changed on the div attribute and not the img attribute inside the div:

This is the HTML code:

<div class="logo-customizer" src="http://13.36.14.143/wp-content/uploads/2021/01/cropped-ssssssss-1.png"><img src="https://13.36.14.143/wp-content/uploads/2021/01/cropped-ssssssss.png" alt="Starford" width="120" height="35"></div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.8k views
Welcome To Ask or Share your Answers For Others

1 Answer

Try especifing the sub-element in the selector

jQuery(function($){ 
    $(window).scroll(function (){
        if ($(this).scrollTop() > 1){ 
            $('.logo-customizer img').attr('src','http://13.36.14.143/wp-content/uploads/2021/01/cropped-ssssssss-1.png');
        }
        if ($(this).scrollTop() < 1000){ 
            $('.logo-customizer img').attr('src','http://13.36.14.143/wp-content/uploads/2021/01/cropped-ssssssss.png');
        }
    })
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...