We have a Lore FAQ page. If you have Story/Lore related questions - make sure to check it out!

Difference between revisions of "MediaWiki:Common.js"

From The Ark: NieR Automata Lore
Jump to: navigation, search
Line 1: Line 1:
 
jQuery(document).ready( function( $ ) {
 
jQuery(document).ready( function( $ ) {
  alert("test");
+
  $('div[data-sort-value]').each(function() {
 +
    var value = $(this).attr('data-sort-value');
 +
 
 +
    $('div[data-sort-value]').each(function() {
 +
      if (value == $(this).attr('data-sort-value')) {
 +
          $(this).css("background-color", "yellow");
 +
        }
 +
    });
 +
});
 
});
 
});

Revision as of 16:47, 3 October 2017

jQuery(document).ready( function( $ ) {
 $('div[data-sort-value]').each(function() {
    var value = $(this).attr('data-sort-value');

    $('div[data-sort-value]').each(function() {
       if (value == $(this).attr('data-sort-value')) {
          $(this).css("background-color", "yellow");
         }
    });
});
});