Can I turn a tab link into a page jump?

I am using a tab menu as a navigation on one of my pages. When someone clicks a tab link, I want it to change the tab pane and ALSO jump them to the top of the page.

There is no option to give the tab link further functionality.

Does anyone know if I can also turn a tab link into a section jump?

Thanks!

here is how:

here is the code i used:

<script>
$(".tab-link").on("click",function(){
	$('html, body').animate({
  	scrollTop: $('#tabs').offset().top
	}, 'slow');
});
</script>

hope this helps :slight_smile: