MediaWiki:Common.js: Difference between revisions

From Off Grid Wiki
Jump to navigation Jump to search
(Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: $('a').each(function(){ if ($(this).attr('href') && $(this).text():contains("Internal:")) { // g...")
 
No edit summary
 
(10 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') && $(this).text():contains("Internal:")) { // get only links with href set
$("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")
    }
});