I'm doing a website and I want to make an element: 1- This hidden. 2-Appear when the scroll is greater than 900px. 3-Disappear when the scroll is greater than 3000px. I was using Jquery and the code I did is the following:
$(document).ready(function() {
//show hide button on scroll
$(window).scroll(function() {
if($(this).scrollTop() > 900) {
$('#email2').fadeIn();
} else {
$('#email2').fadeOut();
};
});
});
But only meet points 1 and 2, help me to achieve the 3 points please? (try with if and also with switch, but do not succeed)