jQuery(document).ready(function($){
/* Vertaal de 'Skip to main content' link naar Nederlands */
var skipLink = $('a.skip-link');
if (skipLink.length > 0) {
skipLink.text('Naar de hoofdinhoud'); // De nieuwe Nederlandse tekst
skipLink.attr('lang', 'nl'); // Vertelt de scanner dat dit NL is
}
});
Skip to main content