Difference between revisions of "MediaWiki:Common.js"
From AquaPedia Case Study Database
(Created page with "→Any JavaScript here will be loaded for all users on every page load.: <script type="text/javascript"> jQuery(document).ready(function() { jQuery(".AScontent").hide(); ...") |
(No difference)
|
Revision as of 08:26, 19 June 2012
/* Any JavaScript here will be loaded for all users on every page load. */ <script type="text/javascript"> jQuery(document).ready(function() { jQuery(".AScontent").hide(); //toggle the componenet with class msg_body jQuery(".ASheader").click(function() { jQuery(this).next(".AScontent").slideToggle(700); }); }); </script>