Skip to content

Instantly share code, notes, and snippets.

@mcunha98
Created August 8, 2020 14:49
Show Gist options
  • Select an option

  • Save mcunha98/98bd490b030c9ce5b7e4eb552b33b3cd to your computer and use it in GitHub Desktop.

Select an option

Save mcunha98/98bd490b030c9ce5b7e4eb552b33b3cd to your computer and use it in GitHub Desktop.
function syncCKEditor(value)
{
CKEDITOR.instances[value].setData(document.getElementById(value).value);
}
//carrega a response para um textarea hidden
$('#resumo').val(response.data.resumo);
//reconecta o ckeditor com o valor atualizado
syncCKEditor('resumo');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment