Difference between revisions of "MediaWiki:Common.js"
From AquaPedia Case Study Database
Line 9: | Line 9: | ||
}); | }); | ||
jQuery(".altASheader").mouseover(function () { | jQuery(".altASheader").mouseover(function () { | ||
− | jQuery(this).css("color","# | + | jQuery(this).css("color","#5B5285"); |
jQuery(this).css("text-decoration","underline"); | jQuery(this).css("text-decoration","underline"); | ||
+ | jQuery(this).css("content"," V"); | ||
}); | }); | ||
jQuery(".altASheader").mouseout(function () { | jQuery(".altASheader").mouseout(function () { |
Revision as of 15:57, 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","#5B5285"); jQuery(this).css("text-decoration","underline"); jQuery(this).css("content"," V"); }); jQuery(".altASheader").mouseout(function () { jQuery(this).css("color","black"); jQuery(this).css("text-decoration","none"); }); });