MediaWiki:Common.js: Difference between revisions

From Off Grid Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
/*
$('a').each(function(){
  if ($(this).attr('href') && $(this).text().indexOf("Internal") >= 0) {
      $(this).addClass("semaeopus_internal")
  }
});
*/


/* Add class to links that point to Internal namespace: */
/* Add class to links that point to Internal namespace: */

Revision as of 16:36, 3 November 2017

/* Any JavaScript here will be loaded for all users on every page load. */

/* Add class to links that point to Internal namespace: */
$("a").each(function() {
    if (this.href.indexOf('Internal:') != -1) {
        $(this).addClass("semaeopus_internal")
    }
});