Skip to content

Instantly share code, notes, and snippets.

@devdays
Created February 22, 2015 21:40
Embed
What would you like to do?
Make footnotes red
(function ($) {
$.fn.footnote = function () {
console.log("footnote");
var footnotes = this.find("span.footnote");
footnotes.css("color", "red");
return footnotes;
};
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment