MediaWiki:Common.js: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Marcus (Diskussion | Beiträge) |
Marcus (Diskussion | Beiträge) |
||
(4 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 2: | Zeile 2: | ||
//MAKE MAINMENU LINKS ACTIVE | //MAKE MAINMENU LINKS ACTIVE | ||
jQuery(document).ready(function(){ | jQuery(document).ready(function(){ | ||
− | var | + | var currUrl = document.location.href; |
console.log("document.location.href :: "); | console.log("document.location.href :: "); | ||
− | console.log( | + | console.log(currUrl); |
− | jQuery("# | + | jQuery("#mw-panel .vector-menu-content-list a").each(function(){ |
var linkUrl = jQuery(this).attr("href"); | var linkUrl = jQuery(this).attr("href"); | ||
− | if(linkUrl == | + | //console.log(linkUrl); |
+ | if(currUrl.indexOf(linkUrl) !== -1){ | ||
jQuery(this).addClass("active"); | jQuery(this).addClass("active"); | ||
} | } | ||
}); | }); | ||
}); | }); |
Aktuelle Version vom 3. März 2021, 20:01 Uhr
/* Das folgende JavaScript wird für alle Benutzer geladen. */
//MAKE MAINMENU LINKS ACTIVE
jQuery(document).ready(function(){
var currUrl = document.location.href;
console.log("document.location.href :: ");
console.log(currUrl);
jQuery("#mw-panel .vector-menu-content-list a").each(function(){
var linkUrl = jQuery(this).attr("href");
//console.log(linkUrl);
if(currUrl.indexOf(linkUrl) !== -1){
jQuery(this).addClass("active");
}
});
});