Izmjene

Idi na navigaciju Idi na pretragu
Dodano 1.640 bajtova ,  07:47, 16 februar 2021
Nova stranica: →‎Any JavaScript here will be loaded for users using the mobile site: var timer = setInterval(function() { if ($('.menu ul:first').length) { console.log("mobile me...
/* Any JavaScript here will be loaded for users using the mobile site */
var timer = setInterval(function() {
if ($('.menu ul:first').length) {
console.log("mobile menu exists");
clearInterval(timer);
$('.menu ul:first').after(
'<ul class="level1"> \
<li> \
<a href="https://wiki.sandzak.com" \
class="mw-ui-icon mw-ui-icon-before mw-ui-icon-minerva-watchlist"> \
<span>Sandžakpedia</span> \
</a> \
</li> \
<li> \
<a href="https://magazin.sandzak.com" \
class="mw-ui-icon mw-ui-icon-before"> \
<span>Magazin</span> \
</a> \
</li> \
<li> \
<a href="https://mail.sandzak.com" \
class="mw-ui-icon mw-ui-icon-before"> \
<span>Mail</span> \
</a> \
</li> \
<li> \
<a href="https://forum.sandzak.com" \
class="mw-ui-icon mw-ui-icon-before"> \
<span>Forum</span> \
</a> \
</li> \
</ul>'
);
//$(".menu").find(".level2").hide(); // hide level2 until level1 is clicked
$(".level1").click(function(event){
$(this).find(".level2").slideToggle(500);
}); // if level1 is clicked, dropdown level2
}
}, 100); // check every 100ms

Navigacija