joseramoncajide
11/28/2016 - 4:12 PM

scroll_bounce_rate.tag.html

<script>
// Scroll básico con jQuery

$(document).ready(function(){

	var height = $(document).height();
	var limit = height/2;
	
	$(window).on("scroll",function(){
		if($(window).scrollTop()>limit){
			console.log('Has llegado a la mitad del documento');
			$(this).unbind("scroll");
		}
	});

});
</script>