Difference between revisions of "MediaWiki:Common.js"
From AquaPedia Case Study Database
Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for all users on every page load. */ | /* Any JavaScript here will be loaded for all users on every page load. */ | ||
+ | <script> | ||
+ | $("p").mouseover(function () { | ||
+ | $(this).css("color","red"); | ||
+ | }); | ||
+ | </script> | ||
+ | |||
+ | |||
<script type="text/javascript"> | <script type="text/javascript"> | ||
jQuery(document).ready(function() { | jQuery(document).ready(function() { | ||
− | |||
jQuery(".AScontent").hide(); | jQuery(".AScontent").hide(); | ||
//toggle the componenet with class msg_body | //toggle the componenet with class msg_body |
Revision as of 09:42, 19 June 2012
/* Any JavaScript here will be loaded for all users on every page load. */ <script> $("p").mouseover(function () { $(this).css("color","red"); }); </script> <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>