if text exists in element using javascript

If text exists in element using JavaScript

As a web developer, I often come across situations where I need to check if a certain text exists in a particular HTML element. Fortunately, JavaScript provides us with various methods to accomplish this task.

The first method is by using the includes() method:

The includes() method is a built-in JavaScript function that checks whether a string contains a specific substring or not. We can use this method to check if the text exists in an element's innerHTML.

const element = document.getElementById("myElement");
const textToCheck = "Hello World";

if (element.innerHTML.includes(textToCheck)) {
  console.log("Text exists in the element.");
} else {
  console.log("Text does not exist in the element.");
}

In the above code snippet, we first select the HTML element that we want to check using its ID. We then define the text that we want to search for in the innerHTML of the element. Finally, we use the includes() method to check if the text exists in the element or not.

The second method is by using the indexOf() method:

The indexOf() method returns the position of the first occurrence of a specified value in a string. We can use this method to check if the text exists in an element's innerHTML.

const element = document.getElementById("myElement");
const textToCheck = "Hello World";

if (element.innerHTML.indexOf(textToCheck) !== -1) {
  console.log("Text exists in the element.");
} else {
  console.log("Text does not exist in the element.");
}

In the above code snippet, we first select the HTML element that we want to check using its ID. We then define the text that we want to search for in the innerHTML of the element. Finally, we use the indexOf() method to check if the text exists in the element or not by comparing it to -1.

The third method is by using regular expressions:

Regular expressions provide a powerful way to search for patterns in strings. We can use them to check if a text exists in an element's innerHTML.

const element = document.getElementById("myElement");
const textToCheck = /Hello World/;

if (textToCheck.test(element.innerHTML)) {
  console.log("Text exists in the element.");
} else {
  console.log("Text does not exist in the element.");
}

In the above code snippet, we first select the HTML element that we want to check using its ID. We then define the regular expression that we want to search for in the innerHTML of the element. Finally, we use the test() method to check if the regular expression matches the innerHTML of the element or not.

These are some of the ways in which you can check if a text exists in an HTML element using JavaScript. Choose the one that suits your needs best and implement it in your project.

Subscribe to The Poor Coder | Algorithm Solutions

Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.
[email protected]
Subscribe