Closed EOM closed 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); });
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(); });