Default value: null
Set the text that appears in the editor.
Syntax
$(function () {
// Get value
var returnsValue; // Type: string
returnsValue = $(".selector").wijeditor("option", "text");
// Set value
var newValue; // Type: string
$(".selector").wijeditor("option", "text", newValue);
});
See Also