ユーザーがスクロールした場合でも、特定のDIVが常に下から20ピクセル、右から20ピクセルになるようにするための最良の方法を決定しようとしています。
<body>
<div id="wrap">
<p>Some content</p>
</div>
<div class="social-badges"><!-- this is the box that will always be at the bottom right --></div>
</body>
$(window).scroll(function() {
console.log('scrolling');
$(".tba-social-slider").css({"position" : "absolute", "bottom" : "20px", "right" : "20px"});
});