EN
                                
                            
                        JavaScript - how to make focus on textarea element?
                                    5
                                    points
                                
                                Using JavaScript it is possible to get focus on textarea element in following way.
1. Pure JavaScript approach example - VanillaJS
// ONLINE-RUNNER:browser;
<!doctype html>
<html>
<body>
  <textarea id="my-input" cols="30" rows="4">
This is example text...
  </textarea>
  <br />
  <button onclick="makeFocus()">Click me and make focus on textarea</button>
  <script>
    
    var input = document.getElementById('my-input');
    function makeFocus() {
    	input.focus();
    }
   
  </script>
</body>
</html>
2. jQuery approach example
Read this article to see jquery approach.