Difference between revisions of "MediaWiki:Common.js"

From AquaPedia Case Study Database
Jump to: navigation, search
Line 2: Line 2:
  
 
jQuery(document).ready(function() {
 
jQuery(document).ready(function() {
   jQuery(".AScontent").hide();
+
   jQuery(".altASlist").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(".altASheader").click(function()
 
   {
 
   {
     jQuery(this).next(".AScontent").slideToggle(700);
+
     jQuery(this).next(".altASlist").slideToggle(700);
 
   });
 
   });
   jQuery(".ASheader").mouseover(function () {
+
   jQuery(".altASheader").mouseover(function () {
     jQuery(this).css("background-color","#D3E6F2");
+
     jQuery(this).css("color","#D3E6F2");
 +
    jQuery(this).css("text-decoration","underline");
 
   });
 
   });
   jQuery(".ASheader").mouseout(function () {
+
   jQuery(".altASheader").mouseout(function () {
     jQuery(this).css("background-color","white");
+
     jQuery(this).css("color","black");
 +
    jQuery(this).css("text-decoration","none");
 
   });
 
   });
  
 
});
 
});

Revision as of 16:50, 20 June 2012

/* Any JavaScript here will be loaded for all users on every page load. */

jQuery(document).ready(function() {
  jQuery(".altASlist").hide();
  //toggle the component with class msg_body
  jQuery(".altASheader").click(function()
  {
    jQuery(this).next(".altASlist").slideToggle(700);
  });
   jQuery(".altASheader").mouseover(function () {
    jQuery(this).css("color","#D3E6F2");
    jQuery(this).css("text-decoration","underline");
   });
   jQuery(".altASheader").mouseout(function () {
    jQuery(this).css("color","black");
    jQuery(this).css("text-decoration","none");
  });

});