VISUAL PHYSICS
Unconventional Explorations into Uninhabited Areas of Physics
Through Thought Experiments in the Form of Simulations...


This is NOT an educational site. The views expressed here are not those of mainstream physics.
If you want to contribute to the wiki, email me at the address given in the Contact page.
Legend:  sim  : Article with simulation --  stb  : Article that needs development (stub).

MediaWiki:Common.js: Difference between revisions

From Visual Physics Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 13: Line 13:
     for (var i=0; i<tags.length; i++) pops( bc.getElementsByTagName( tags[i] ) );
     for (var i=0; i<tags.length; i++) pops( bc.getElementsByTagName( tags[i] ) );
} );
} );
.pops a {
  background-color: #ffc !important;
}

Revision as of 00:37, 21 November 2007

/* Any JavaScript here will be loaded for all users on every page load. */

addOnloadHook( function() {
     var pops = function( elems ) {
         for (var i=0; i<elems.length; i++) {
             if ( !(' '+elems[i].className+' ').match( / pops / ) ) continue;
             var anchs = elems[i].getElementsByTagName('a');
             for (var j=0; j<anchs.length; j++) anchs[j].target = '_blank';
         }
     };
     var bc = document.getElementById('bodyContent');
     var tags = ['span', 'div', 'table', 'td', 'th'];
     for (var i=0; i<tags.length; i++) pops( bc.getElementsByTagName( tags[i] ) );
} );