I have an element that moves on hover up or down. I need to know the position on that block and see in an text
<script type="text/javascript">
var who = $(".back");
var pozitie = who.position();
$("p.pozitie").text("TOP:" + pozitie.top);
</script>
This script gives me only the start position. I need the position all the time. Can someone help?