MediaWiki
Group-Grouse.js: Difference between revisions
From Grouse House Wiki
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
$(function() { | $(function() { | ||
$(' | $('h2.c-header.active').each(function () { | ||
var $elem = $(this); | var $elem = $(this); | ||
$elem.css( 'color', 'red'); | $elem.css( 'color', 'red'); | ||
}); | }); | ||
}); | }); | ||
Revision as of 00:22, 3 February 2024
$(function() {
$('h2.c-header.active').each(function () {
var $elem = $(this);
$elem.css( 'color', 'red');
});
});
