Return to Snippet

Revision: 34921
at October 30, 2010 06:44 by chendrix


Updated Code
$('blockquote').prepend(" <span class='bqstart'>&#8220;</span> ");
$('blockquote').append(" <span>&nbsp;</span><span class='bqend'>&#8221;</span> ");

Revision: 34920
at October 30, 2010 06:41 by chendrix


Updated Code
$('blockquote').prepend(" <span class='bqstart'>&#8220;</span>" )
$('blockquote').append(" <span>&nbsp;</span><span class='bqend'>&#8221;</span> ");

Revision: 34919
at October 30, 2010 06:36 by chendrix


Initial Code
<script type="text/javascript">
	$('blockquote').prepend(" <span class='bqstart'>&#8220;</span>" )
	$('blockquote').append(" <span>&nbsp;</span><span class='bqend'>&#8221;</span> ");
</script>

Initial URL


Initial Description
Adds the curly quotes along with the classes for [Big Curly Blockquotes](http://snipplr.com/view/263/big-curly-quotes-markup/ "Big Curly Blockquotes")

Just need to write `<blockquote>Quote Text Here</blockquote>` in your HTML instead of the other markup necessary.

Initial Title
Add curly quotes with classes around blockquotes

Initial Tags


Initial Language
jQuery