Home › Forums › Quform WordPress › changing text in editor field
Helly Ally,
I am trying to change the text in an textfield with editor switched on.
$(‘.quform-field-6_5’).val(“123”);
works perfectly for a normal text area, but not for a “edtor” text area.
I tried $(‘[name=quform_6_5]’).val(“123”);
which seems to change some underlying value, but does not change the visible part of the text editor.
How can I change the text in the text editor?
You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
Great. Works perfectly.
How do I get the content of this editor field? When using
$(“[name=quform_6_5]”).html()
I am getting the original content. Not the changed content after editing the field.