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:
$(function() {if ( wgCanonicalSpecialPageName == 'Upload' ) {
$(function() {if ( wgCanonicalSpecialPageName == 'Upload' ) {
document.getElementsByTagName("option")[1].removeAttribute("selected");
document.getElementById( 'wpLicense' ).firstChild.removeAttribute("selected");
document.getElementsByTagName("option")[2].setAttribute("selected","selected");
document.getElementById( 'wpLicense' ).firstChild.nextSibling.setAttribute("selected","selected");
         }
         }
});
});

Revision as of 04:28, January 10, 2013

$(function() {if ( wgCanonicalSpecialPageName == 'Upload' ) {
document.getElementById( 'wpLicense' ).firstChild.removeAttribute("selected");
document.getElementById( 'wpLicense' ).firstChild.nextSibling.setAttribute("selected","selected");
        }
});