// Quote Text var $m = $('#canvas_frame').contents(); var orig_button = $m.find('.fa.eL') var button = ''; var $ta = $m.find('iframe.Am.Al.editable').contents(); // Only add when it's not there. if ( ! orig_button.next().hasClass('blockquote')) { orig_button.after(button); orig_button.next().unbind().click(function() { var selection = $m[0].getSelection().toString(); var quote = [ "

", '
' + selection + "
", "

" ].join(''); console.log('Doing it.'); // body can be empty. $ta.find('body').html($ta.find('body').html() + quote); }); }