MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 17: | Line 17: | ||
/*Inject a search bar to filter elements in lists in the same div*/ | /*Inject a search bar to filter elements in lists in the same div*/ | ||
$( function() { | $( function() { | ||
window.test = ' | window.test = 'test2'; | ||
console.log('test'); | console.log('test'); | ||
} ); | } ); |
Revision as of 12:44, 15 June 2020
/* Any JavaScript here will be loaded for all users on every page load. */
/* For every span, div, table, td, or th, if that element has the class "pops", then all anchor links (e.g. from [] or [[]] syntax) should open in a new tab/window. */
$( function() {
var pops = function( elems ) {
for (var i=0; i<elems.length; i++) {
if ( !(' '+elems[i].className+' ').match( / pops / ) ) continue;
var anchs = elems[i].getElementsByTagName('a');
for (var j=0; j<anchs.length; j++) anchs[j].target = '_blank';
}
};
var bc = document.getElementById('bodyContent');
var tags = ['span', 'div', 'table', 'td', 'th'];
for (var i=0; i<tags.length; i++) pops( bc.getElementsByTagName( tags[i] ) );
} );
/*Inject a search bar to filter elements in lists in the same div*/
$( function() {
window.test = 'test2';
console.log('test');
} );