What kind of event do I need to fire to programmatically start or stop actually editing a contenteditable, like when the user focuses or blurs it? I tried .focus(), .click(), setting the selection to its content, but none of them seem to work.
EDIT: .focus() does work, just make sure the contenteditable node is already inserted to the document...
You can use the trigger()
method inside jQuery:
$('div[contenteditable="true"]').trigger('focus');
This will cause the caret to appear on page load, as per this jsFIddle demo.
Maybe you are looking for disabled and readonly attributes.
HTML:
<input type="text" disabled="disabled" />
Javascript:
document.getElementsByTagName("div")[0].setAttribute("disabled", "disabled");
other option is
HTML:
<input type="text" readonly="readonly" />
Javascript:
document.getElementsByTagName("div")[0].setAttribute("readonly", "readonly");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With