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(){
$('a').each(function(){
   if ($(this).attr('href') && $(this).text().indexOf("Internal") >= 0) {
   if ($(this).attr('href') && $(this).text().indexOf("Internal") >= 0) {
       $(this).addClass("semaeopus_internal")
       $(this).addClass("semaeopus_internal")
   }
   }
});
*/
/* Add class to links that point to Internal namespace: */
$("a").each(function() {
    if (this.href.indexOf('Internal:') != -1) {
        $(this).addClass("semaeopus_internal")
    }
});
});

Revision as of 16:34, 3 November 2017

/* 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: */
$("a").each(function() {
    if (this.href.indexOf('Internal:') != -1) {
        $(this).addClass("semaeopus_internal")
    }
});