mirror of
				https://scm.univ-tours.fr/22107988t/rappaurio-sae501_502.git
				synced 2025-11-04 06:05:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			368 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			368 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
function scrollToNavItem() {
 | 
						|
    var path = window.location.href.split('/').pop().replace(/\.html/, '');
 | 
						|
    document.querySelectorAll('nav a').forEach(function(link) {
 | 
						|
      var href = link.attributes.href.value.replace(/\.html/, '');
 | 
						|
      if (path === href) {
 | 
						|
        link.scrollIntoView({block: 'center'});
 | 
						|
        return;
 | 
						|
      }
 | 
						|
    })
 | 
						|
  }
 | 
						|
 | 
						|
  scrollToNavItem();
 |