I am trying to scroll the text which is inside .text, when I click to .down. I have a simple text with overflow hidden. I have the example here: http://jsbin.com/ofaquh/1/edit
I have been looking to the jQuery scrollTo function, but I think I don't know how to use it well:
$(function(){
$(".down").click(function() {
$(".text").scrollTo(20);
});
})