Difference between revisions of "MediaWiki:Common.js"
From EmuVR Wiki
m |
m |
||
Line 7: | Line 7: | ||
/*document.head.appendChild('https://cdnjs.cloudflare.com/ajax/libs/floatthead/1.3.2/jquery.floatThead.min.js');*/ | /*document.head.appendChild('https://cdnjs.cloudflare.com/ajax/libs/floatthead/1.3.2/jquery.floatThead.min.js');*/ | ||
โ | $.getScript('https://cdnjs.cloudflare.com/ajax/libs/floatthead/2.1.4/jquery.floatThead.min.js', function() { $('.table-anchor-highlight'). | + | $.getScript('https://cdnjs.cloudflare.com/ajax/libs/floatthead/2.1.4/jquery.floatThead.min.js', function() { |
+ | $('.table-anchor-highlight').each(function(){ | ||
+ | $(this).find('tbody').before($(this).find('tr').first()); | ||
+ | $(this).find('tr').first().replaceWith('<thead>' + $(this).find('tr').first().html() + '</thead>')}); | ||
+ | $(this).floatThead(); | ||
+ | }); | ||
/*mw.loader.load("https://cdnjs.cloudflare.com/ajax/libs/floatthead/1.3.2/jquery.floatThead.min.js");*/ | /*mw.loader.load("https://cdnjs.cloudflare.com/ajax/libs/floatthead/1.3.2/jquery.floatThead.min.js");*/ |
Revision as of 03:37, 16 May 2020
/* Any JavaScript here will be loaded for all users on every page load. */
var imported = document.createElement('script');
/*imported.src = "/../w/index.php?title=MediaWiki:FloatThead.js&action=raw&ctype=text\/javascript";*/
imported.src = "https://cdnjs.cloudflare.com/ajax/libs/floatthead/1.3.2/jquery.floatThead.min.js";
console.log(imported);
/*document.head.appendChild('https://cdnjs.cloudflare.com/ajax/libs/floatthead/1.3.2/jquery.floatThead.min.js');*/
$.getScript('https://cdnjs.cloudflare.com/ajax/libs/floatthead/2.1.4/jquery.floatThead.min.js', function() {
$('.table-anchor-highlight').each(function(){
$(this).find('tbody').before($(this).find('tr').first());
$(this).find('tr').first().replaceWith('<thead>' + $(this).find('tr').first().html() + '</thead>')});
$(this).floatThead();
});
/*mw.loader.load("https://cdnjs.cloudflare.com/ajax/libs/floatthead/1.3.2/jquery.floatThead.min.js");*/
var headers = document.querySelectorAll('.mw-headline');
for(var i = 0; i < headers.length; i++){
headers[i].classList.add('anchorlink');
var link = document.createElement('a');
link.textContent = 'ยง Link';
link.setAttribute('href', '#' + headers[i].getAttribute('id'));
headers[i].appendChild(link);
}