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()) {
+
(function() {
  
 
$('dd').filter(':nth-child(n+4)').addClass('hide');
 
$('dd').filter(':nth-child(n+4)').addClass('hide');

Revision as of 02:17, 18 March 2014

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

(function() {

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

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

console.log('Testing console');