I'm using jQuery to calculate the amount of the page that is currently scrolled, and write that value to an input every time the page is scrolled.
var scrollAmount = $(window).scrollTop();
var documentHeight = $(document).height();
var scrollPercent = (scrollAmount / documentHeight) * 100;
$(window).scroll(function (event) {
$(".box").val(scrollPercent);
});
Fiddle: http://jsfiddle.net/x3jXK/
And yet, when I try this, the input always shows zero.
I remember reading something about using .attr() instead of .val() because the displayed value won't change, but not sure how I could implement that here as it changes dynamically, not just from one to a second.