Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.

Focus on field textarea

Post Reply
Laertes
Posts: 29
Joined: Fri Apr 27, 2018 1:27 pm

Focus on field textarea

Post 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>
User avatar
salvadordf
Posts: 4057
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Focus on field textarea

Post 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();
Laertes
Posts: 29
Joined: Fri Apr 27, 2018 1:27 pm

Re: Focus on field textarea

Post by Laertes »

Thank you so much again !
It worked!
Post Reply