- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
JavaScript focus a particular element with div class, not div id declaration?
You can use the concept of focus(). Following is the JavaScript code −
Example
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> </head> <body> <span class="TEXT_FOCUS" tabindex="-1"><center>TEXT BOX FOR FOCUS</center></span><br> <button id="focusButton">click me to get the tab on focus</button> <script> document.getElementById('focusButton').addEventListener('click', function() { document.querySelectorAll('.TEXT_FOCUS')[0].focus(); }); </script> </body> </html>
To run the above program, save the file name anyName.html(index.html) and right click on the file and select the option open with live server in VS code editor.
Output
When you click the button, the focus will be on a particular element. The snapshot is as follows −
- Related Articles
- Replace HTML div into text element with JavaScript?
- Toggle hide class only on selected div with JavaScript?
- Find div element by multiple class names in Selenium?
- How to filter a DIV element based on its class name wth CSS and JavaScript?
- Get div height with vanilla JavaScript
- How to take screenshot of a div with JavaScript
- How to wrap tables with div element using jQuery?
- Hide div that contains specific text with JavaScript?
- Get value from div with JavaScript resulting undefined?
- How can you set the height of an outer div to always be equal to a particular inner div?
- How to set div position relative to another div in JavaScript?
- How to create a div element in jQuery?
- Find:$(i). 7 div 3.5$$(ii). 36 div 0.2$$(iii). 3.25 div 0.5$ $(iv). 30.94 div 0.7$$(v). 0.5 div 0.25$$(vi). 7.75 div 0.25$ $(vii). 76.5 div 0.15$$(viii). 37.8 div 1.4$$(ix). 2.73 div 1.3$
- Find:$(i). 0.4 div 2$$(ii). 0.35 div 5$$(iii). 2.48 div 4$ $(iv). 65.4 div 6$$(v). 651.2 div 4$$(vi). 14.49 div 7$ $(vii). 3.96 div 4$$(viii). 0.80 div 5$
- Evaluate the following:$[(-100) div 20] div [25 div (-5)]$.

Advertisements