So I made a web site on WordPress in which I need to put an arrow that scroll down in the page, and it works but just one time and I need that buttom work the hole page. This is the code:
<script type="text/javascript">
$(document).ready(function(){
$('.ir-abajo').click(function(){
$('body, html').animate({
scrollTop: '220px'
}, 200);
});
});
</script>