Difference between revisions of "MediaWiki:Common.js"

From The Grove - Academia de Idiomas
Jump to: navigation, search
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. */
 +
 +
(function() {
 +
 +
$('.accordion dd').filter(':nth-child(n+4)').addClass('hide');
 +
 +
$('.accordion dl').on('mouseenter', 'dt', function() {
 +
$(this)
 +
.next()
 +
.slideDown(200)
 +
.siblings('dd')
 +
.slideUp(200);
 +
});
 +
})();

Revision as of 12:51, 20 March 2014

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

(function() {

	$('.accordion dd').filter(':nth-child(n+4)').addClass('hide');

	$('.accordion dl').on('mouseenter', 'dt', function() {
		$(this)
			.next()
				.slideDown(200)
				.siblings('dd')
					.slideUp(200);		
	});
})();