MediaWiki:Common.js: Difference between revisions

From Off Grid Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(4 intermediate revisions by the same user not shown)
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(){
/* Add class to links that point to Internal namespace: */
  if ($(this).attr('href').indexOf("Internal") >= 0) {
$("a").each(function() {
      $(this).addClass("internal")
    if (this.href.indexOf('Internal') != -1) {
  }
        $(this).addClass("semaeopus_internal")
    }
});
});

Latest revision as of 10:58, 6 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")
    }
});