- 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 code to de-select text on HTML page.
Following is the code to de-select text on HTML page −
Example
<!DOCTYPE html> <htmllang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result { font-size: 20px; font-weight: 500; color: rebeccapurple; } </style> </head> <body> <h1>De-select text on HTML page</h1> <div style="color: green;" class="result"> Here is some text inside the div </div> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to deselect everything on this page</h3> <script> let resEle = document.querySelector(".result"); document.querySelector(".Btn").addEventListener("click", () => { window.getSelection().removeAllRanges(); }); </script> </body> </html>
Output
The above code will produce the following output −
Selecting some text on the page −
On clicking the ‘CLICK HERE’ button −
- Related Articles
- How to write inline JavaScript code in HTML page?
- Calling asynchronous code from index.html page in JavaScript?
- Finding text on page with Selenium 2
- Remove any text not inside element tag on a web page with JavaScript?
- How to identify elements based on text visible on page in Selenium?
- How to use JavaScript to redirect an HTML page?
- Place autofocus in the text box when a page gets loaded without JavaScript support in HTML?
- JavaScript code to find the coordinates of every link in a page
- How to include inline JavaScript inside an HTML page?
- Is it possible to select text boxes with JavaScript?
- Highlight a text, every time page loads with JavaScript
- How to include an external JavaScript inside an HTML page?
- Adding YouTube videos on an HTML web page
- How to make page links in HTML Page?
- Can I change the text of options for SELECT via code in ABAP?

Advertisements