MediaWiki
Group-Grouse.js: Difference between revisions
From Grouse House Wiki
(Created blank page) |
No edit summary |
||
| Line 1: | Line 1: | ||
$(function() { | |||
$('#firstHeadingTitle').each(function () { | |||
var $elem = $(this); | |||
$elem.css( 'color', 'red'); | |||
}); | |||
}); | |||
Revision as of 00:21, 3 February 2024
$(function() {
$('#firstHeadingTitle').each(function () {
var $elem = $(this);
$elem.css( 'color', 'red');
});
});
