h4ck5p4c3/js/mediumish.js

12 lines
322 B
JavaScript
Raw Permalink Normal View History

2020-06-01 22:13:24 +02:00
$(function(){
var topOfOthDiv = $(".hideshare").offset().top;
$(window).scroll(function() {
if($(window).scrollTop() > topOfOthDiv) { //scrolled past the other div?
$(".share").hide(); //reached the desired point -- show div
}
else{
$(".share").show();
}
});
});