Difference between revisions of "MediaWiki:Common.js"

From AquaPedia Case Study Database
Jump to: navigation, search
Line 13: Line 13:
 
   });
 
   });
 
   jQuery(".altASheader").mouseout(function () {
 
   jQuery(".altASheader").mouseout(function () {
     jQuery(this).css("background-image","none");
+
     /* jQuery(this).css("background-image","none"); */
 
     jQuery(this).css("text-decoration","none");
 
     jQuery(this).css("text-decoration","none");
 
   });
 
   });
  
 
});
 
});

Revision as of 17:29, 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("background-image","url('images/expand.png')");
    jQuery(this).css("text-decoration","underline");
   });
   jQuery(".altASheader").mouseout(function () {
    /* jQuery(this).css("background-image","none"); */
    jQuery(this).css("text-decoration","none");
  });

});