I have a <div contenteditable=true>
where I define by a WYSIWYG some elements. For example <p>
,<h1>
, etc. I would like to put directly the focus on one of this elements.
For example on <p id="p_test">
. But it seems that focus()
function doesn't work on <div>
elements, <p>
elements...
Is there a another means to define the focus in my case?
Old post but none of the solutions worked for me. I figured it out eventually though:
var div = document.getElementById('contenteditablediv');
setTimeout(function() {
div.focus();
}, 0);