MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
David Mason (talk | contribs) No edit summary |
David Mason (talk | contribs) No edit summary |
||
Line 15: | Line 15: | ||
include("/js/jquery.galleriffic.js"); | include("/js/jquery.galleriffic.js"); | ||
include("/js/jquery.opacityrollover.js"); | include("/js/jquery.opacityrollover.js"); | ||
include("/js/jquery.dogallery.js"); | |||
/* We only want the thunbnails to display when javascript is disabled */ | /* We only want the thunbnails to display when javascript is disabled */ | ||
document.write('<style>.noscript { display: none; }</style>'); | document.write('<style>.noscript { display: none; }</style>'); | ||
Revision as of 21:02, 14 June 2010
/* Any JavaScript here will be loaded for all users on every page load. */
function include(filename) {
var head = document.getElementsByTagName('head')[0];
script = document.createElement('script');
script.src = filename;
script.type = 'text/javascript';
head.appendChild(script)
}
include("js/jquery-1.3.2.js");
include("/js/jquery.history.js");
include("/js/jquery.galleriffic.js");
include("/js/jquery.opacityrollover.js");
include("/js/jquery.dogallery.js");
/* We only want the thunbnails to display when javascript is disabled */
document.write('<style>.noscript { display: none; }</style>');