Difference between revisions of "MediaWiki:Common.js"
| Line 12: | Line 12: | ||
thisSpanTag.innerHTML = '<img src="http://apple2.info/a2/fdt2.gif?exec=size%2010,10;autoresize%20both;color%200xFFFFFF;fill;color%200x0000FF;' + | thisSpanTag.innerHTML = '<img src="http://apple2.info/a2/fdt2.gif?exec=size%2010,10;autoresize%20both;color%200xFFFFFF;fill;color%200x0000FF;' + | ||
"font%20'A28.ttf',12,12;string%20'" + | "font%20'A28.ttf',12,12;string%20'" + | ||
| + | temp + "'" + '" alt="' + temp + '" />'; | ||
| + | } | ||
| + | } | ||
| + | } | ||
| + | } | ||
| + | |||
| + | window.runOnloadHook = function () { | ||
| + | var h3Tags = document.getElementsByTagName('h3'); | ||
| + | for (var i = 0; i < h3Tags.length; i++) { | ||
| + | var thisH3Tag = h3Tags[i]; | ||
| + | var spanTags = thisH3Tag.getElementsByTagName('span'); | ||
| + | for (var j = 0; j < spanTags.length; j++) { | ||
| + | var thisSpanTag = spanTags[j]; | ||
| + | if (thisSpanTag.className.match(/\bmw-headline\b/)) { | ||
| + | var temp = encodeURIComponent(thisSpanTag.textContent); | ||
| + | thisSpanTag.innerHTML = '<img src="http://apple2.info/a2/fdt2.gif?exec=size%2010,10;autoresize%20both;color%200xFFFFFF;fill;color%200x0000FF;' + | ||
| + | "font%20'A24.ttf',12,12;string%20'" + | ||
temp + "'" + '" alt="' + temp + '" />'; | temp + "'" + '" alt="' + temp + '" />'; | ||
} | } | ||
Revision as of 21:50, 9 September 2007
/* Any JavaScript here will be loaded for all users on every page load. */
window.runOnloadHook = function () {
var h2Tags = document.getElementsByTagName('h2');
for (var i = 0; i < h2Tags.length; i++) {
var thisH2Tag = h2Tags[i];
var spanTags = thisH2Tag.getElementsByTagName('span');
for (var j = 0; j < spanTags.length; j++) {
var thisSpanTag = spanTags[j];
if (thisSpanTag.className.match(/\bmw-headline\b/)) {
var temp = encodeURIComponent(thisSpanTag.textContent);
thisSpanTag.innerHTML = '<img src="http://apple2.info/a2/fdt2.gif?exec=size%2010,10;autoresize%20both;color%200xFFFFFF;fill;color%200x0000FF;' +
"font%20'A28.ttf',12,12;string%20'" +
temp + "'" + '" alt="' + temp + '" />';
}
}
}
}
window.runOnloadHook = function () {
var h3Tags = document.getElementsByTagName('h3');
for (var i = 0; i < h3Tags.length; i++) {
var thisH3Tag = h3Tags[i];
var spanTags = thisH3Tag.getElementsByTagName('span');
for (var j = 0; j < spanTags.length; j++) {
var thisSpanTag = spanTags[j];
if (thisSpanTag.className.match(/\bmw-headline\b/)) {
var temp = encodeURIComponent(thisSpanTag.textContent);
thisSpanTag.innerHTML = '<img src="http://apple2.info/a2/fdt2.gif?exec=size%2010,10;autoresize%20both;color%200xFFFFFF;fill;color%200x0000FF;' +
"font%20'A24.ttf',12,12;string%20'" +
temp + "'" + '" alt="' + temp + '" />';
}
}
}
}