Skip to content

Instantly share code, notes, and snippets.

@gesteves
Last active December 11, 2015 03:59
Show Gist options
  • Save gesteves/4542243 to your computer and use it in GitHub Desktop.
Save gesteves/4542243 to your computer and use it in GitHub Desktop.
$('p').each(function () {
var _this = $(this);
if (_this.css('font-family') == "Comic Sans") {
_this.css('font-family', 'Helvetica');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment