Skip to content

Instantly share code, notes, and snippets.

@jackfranklin
Created September 15, 2011 15:58
Show Gist options
  • Save jackfranklin/1219645 to your computer and use it in GitHub Desktop.
Save jackfranklin/1219645 to your computer and use it in GitHub Desktop.
jQuery.fn.jQuote = function(options) {
var defaults = {
quoteClass : '.quote',
blockQuoteClass: 'jquote-block'
};
var settings = $.extend({}, defaults, options);
return this.each(function() { });
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment