**
$(window).scroll(function() {
$('#box').css('top', $(this).scrollTop())
})

* {
margin: 0;
padding: 0;
}
body {
height: 2000px;
}
#box {
width: 200px;
height: 200px;
position: absolute;
background: gray;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<div id="box"></div>
&#13;