MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 19: | Line 19: | ||
}); | }); | ||
}); | }); | ||
Revision as of 15:32, 26 April 2015
jQuery(document).ready(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] ) );
});
jQuery(document).ready(function($) {
jQuery('.formcancel').each(function(index) {
var buttontext = jQuery(this).html();
var html = '<a onclick="window.history.back();">' + buttontext + '</a>';
jQuery(this).html(html);
});
});