Difference between revisions of "MediaWiki:Common.js"
From AquaPedia Case Study Database
Line 3: | Line 3: | ||
jQuery(document).ready(function() { | jQuery(document).ready(function() { | ||
jQuery(".AScontent").hide(); | jQuery(".AScontent").hide(); | ||
+ | jQuery("div.ASsection:first-child div.AScontent").show(); | ||
//toggle the component with class msg_body | //toggle the component with class msg_body | ||
− | + | jQuery(".ASheader").click(function() | |
{ | { | ||
jQuery(this).next(".AScontent").slideToggle(700); | jQuery(this).next(".AScontent").slideToggle(700); | ||
− | }); | + | }); |
}); | }); |
Revision as of 10:11, 19 June 2012
/* Any JavaScript here will be loaded for all users on every page load. */ jQuery(document).ready(function() { jQuery(".AScontent").hide(); jQuery("div.ASsection:first-child div.AScontent").show(); //toggle the component with class msg_body jQuery(".ASheader").click(function() { jQuery(this).next(".AScontent").slideToggle(700); }); });