I am using medium-editor
js to for the editable fields. When I hover on the respecitve field/s it shows me the fields to edit.
But, I want it to show the editable fields on page load instead of hovering over the div
containing editable fields.
Is there option that I can pass while intializing MediumEditor
class or any other way to show all editable fields on page load?
My code looks like this
var editor = new MediumEditor(el, {
placeholder: false,
toolbar: false
})
editor.subscribe('editableInput', function (event, currentEditable) {
// Code for editable Fields
}
If you're instantiating MediumEditor by passing an element directly (the
el
variable in your example code) then can't you add a custom css class to each element you pass into the editor? I'm not sure whereel
is coming from in your example code, but you could do something like this:The result of this would be each of the editor fields has a 'editable' class on it, and I've styled those fields with a border via css.
Is this what you were asking for?