mindmup / bootstrap-wysiwyg

Tiny bootstrap-compatible WISWYG rich text editor
MIT License
5.56k stars 844 forks source link

Is there paste button ??????? #218

Open NehalHassan opened 6 years ago

NehalHassan commented 6 years ago

i tried to make a paste button using data-edit="paste" but it doesn't work !!!!!!!!

soljohnston777 commented 6 years ago

I copy from the editor to the div with JQuery:

$('#editor').on('keyup', function() { // alert($("#editor").html()); // can use this to check and make sure your editor is responding $("#div_you_want_the_text_duplicating_in").html($("#editor").html());
});