User:Emma/common.js: Difference between revisions

From Zelda Dungeon Wiki
Jump to navigation Jump to search
Want an adless experience? Log in or Create an account.
mNo edit summary
mNo edit summary
Line 1: Line 1:
if ( wgCanonicalSpecialPageName == 'Upload' ) {
$(function() {if ( wgCanonicalSpecialPageName == 'Upload' ) {
document.getElementsByTagName("option")[1].removeAttribute("selected");
document.getElementsByTagName("option")[1].removeAttribute("selected");
document.getElementsByTagName("option")[2].setAttribute("selected","selected");
document.getElementsByTagName("option")[2].setAttribute("selected","selected");
}
        }
});

Revision as of 04:23, January 10, 2013

$(function() {if ( wgCanonicalSpecialPageName == 'Upload' ) {
document.getElementsByTagName("option")[1].removeAttribute("selected");
document.getElementsByTagName("option")[2].setAttribute("selected","selected");
        }
});