I am trying to submit input fields including a textarea but unable to retrieve value from the textarea when wysiwyg medium editor is enabled on the same. FYI i am new to livewire and alphine but trying…
Here is my livewire blade code
...
<textarea wire:model.defer="content.about.description" class="editable form__description" wire:ignore></textarea>
...
...
<button wire:click="submit" type="button" class="form__submit mt-3">Submit</button>
...
JS code to init Medium editor
var editor = new MediumEditor('.editable');
YES, I have the latest version. Any ideas??
This is how my Inspect console looks like with medium editor class “editiable” is added.