MediaWiki:Common.js: Difference between revisions

From Off Grid Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision 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(){
  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: */
$("a").each(function() {
$("a").each(function() {
     if (this.href.indexOf('Internal:') != -1) {
     if (this.href.indexOf('Internal') != -1) {
         $(this).addClass("semaeopus_internal")
         $(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")
    }
});