I'm making a image that if you click it, will scroll a div (with overflow hidden), but it makes weird results, scrolling weird:
function scroll() {
var div = document.getElementById('bio');
div.scrollTop = div.scrollTop + '1';
}
seems right, isnt it?