jhollingworth / bootstrap-wysihtml5

Simple, beautiful wysiwyg editor
http://jhollingworth.github.com/bootstrap-wysihtml5/
MIT License
4.14k stars 1.01k forks source link

$('#textarea2').val( $('#textarea1').val() ); no change in wysihtml5() #259

Closed EOM closed 11 years ago

EOM commented 11 years ago

How to add the contents of another textarea copy textarea2 ..?

$('#ProductosTexto').wysihtml5(); var textEn = $('#ProductosTextoEn').wysihtml5();

// Not Set change in $('#ProductosTextoEn') $('#btnTxtText').on('click', function(){ textEn.val($('#ProductosTexto').val()); //$('#ProductosTextoEn').val($('#ProductosTexto').val()).wysihtml5(); });

EOM commented 11 years ago

Solution, such as copying contents of a textarea1 to textarea2

$('#ProductosTexto').wysihtml5(); $('#ProductosTextoEn').wysihtml5();

//Copy textarea1 to textarea2 $('#btnTxtText').on('click', function(){ var wysihtml5Editor = $('#ProductosTextoEn').data("wysihtml5").editor; wysihtml5Editor.setValue( $('#ProductosTexto').val(), true); });