I'm working with a ckeditor, and everything works fine, but I would like to know, how can you erase the body tag so that it does not appear once you start typing.
I add my code
<div class="col-sm-12">
<textarea id="ckeditorEmail" name="ckeditor1" rows="5"></textarea>
<div class="input-group" style="margin-bottom: 10px;margin-top: 10px">
<div class="custom-file">
<input type="file" name="archivo" class="custom-file-input" id="inputGroupFile04">
<label class="custom-file-label" for="inputGroupFile04">Selecciona un archivo</label>
</div>
</div>
<div class="buttons-w">
<div class="actions-right">
<button class="btn btn-success"><i class="os-icon os-icon-mail-18"></i><span>Enviar Mensaje</span></button>
</div>
</div>
</div>
And my javascript is like this
if ($('#ckeditor1').length) {
CKEDITOR.replace('ckeditor1');
}
if (typeof CKEDITOR !== 'undefined') {
CKEDITOR.disableAutoInline = true;
if ($('#ckeditorEmail').length) {
CKEDITOR.config.uiColor = '#ffffff';
CKEDITOR.config.toolbar = [['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink']];
CKEDITOR.config.height = 110;
CKEDITOR.replace('ckeditor1');
}
}