Page 1 of 1

Focus on field textarea

Posted: Mon Apr 30, 2018 1:49 pm
by Laertes
Good Morning!
I'm trying to figure out how to focus the mouse in the textarea field, but I can not.
see the excerpt from where I need to put the mouse.

Code: Select all

<textarea name="message" placeholder="Ex: Let's go to the party…" maxlength="300" id="custom-message" class="send-invite__custom-message mb3 ember-text-area ember-view"></textarea>

Re: Focus on field textarea

Posted: Mon Apr 30, 2018 2:54 pm
by salvadordf
CEF only has some procedures to handle the DOM. Most of the times JavaScript is the only way or the easiest way to do what you want.

In this case, you should be able to set the focus executing this code :

Code: Select all

document.getElementById("custom-message").focus();

Re: Focus on field textarea

Posted: Mon Apr 30, 2018 10:10 pm
by Laertes
Thank you so much again !
It worked!