From 6b71d8de35c2c49dad1dc65fe39f25c5298941be Mon Sep 17 00:00:00 2001 From: Ramnath Vaidyanathan Date: Tue, 27 Aug 2013 19:12:42 -0400 Subject: [PATCH] Scroll page to top when prev/next clicked. --- tutorial/index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tutorial/index.html b/tutorial/index.html index 7e262cfff..e5b53b072 100644 --- a/tutorial/index.html +++ b/tutorial/index.html @@ -457,11 +457,13 @@ manageNextPrev(); $('a#next').click(function(e) { e.preventDefault(); location.href = $('.nav li.active').nextAll('li:not(.nav-header)').first().find('a').attr('href'); + $('html,body').scrollTop(0); manageNextPrev(); }); $('a#previous').click(function(e) { e.preventDefault(); location.href = $('.nav li.active').prevAll('li:not(.nav-header)').first().find('a').attr('href'); + $('html,body').scrollTop(0); manageNextPrev(); });