Difference between revisions of "MediaWiki:Common.js"

From The Grove - Academia de Idiomas
Jump to: navigation, search
Line 5: Line 5:
 
$('.acc div').filter(':nth-child(n+4)').addClass('hide');
 
$('.acc div').filter(':nth-child(n+4)').addClass('hide');
  
$('div.acc').on('mouseenter', 'h3', function() {
+
$('div.acc').on('click', 'h3', function() {
 
$(this)
 
$(this)
 
.next()
 
.next()

Revision as of 12:39, 26 March 2014

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

(function() {

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

	$('div.acc').on('click', 'h3', function() {
		$(this)
			.next()
				.slideDown(200)
				.siblings('div')
					.slideUp(200);		
	});
})();