December 31, 2024
2 min read

Scenario

Imagine you have a set of elements with the class specific_class, and they all contain the phrase “old text.” You want to replace this phrase with “New text” programmatically.

The Solution

Here’s a simple jQuery script to achieve this:

jQuery
(function ($) {
    "use strict";

    jQuery(document).ready(function ($) {
        $('.specific_class').each(function() {
            var text = $(this).text();
            $(this).text(text.replace('old text', 'New text')); 
        });
    });

}(jQuery));

How It Works

  • jQuery Ready Function: The jQuery(document).ready() ensures the DOM is fully loaded before executing the script.
  • Target Specific Elements: The $(‘.specific_class’) selector targets all elements with the class specific_class.
  • Loop Through Elements: The .each() method iterates through each element with the specified class.
  • Get the Current Text: The $(this).text() retrieves the text content of the current element in the loop.
  • Replace the Text: The .replace(‘old text’, ‘New text’) method replaces the specified string.
  • Set the Updated Text: The updated text is set back to the element using $(this).text(updatedText).

Things to Keep in Mind

  • Case Sensitivity: The replace() method is case-sensitive. Use a regular expression with the i flag for case-insensitive replacements.
  • Performance: While .each() is great for small to medium-sized datasets, consider optimizing for larger datasets.
  • Special Characters: If the text to replace contains special characters, you may need to escape them.

Extending the Script

jQuery
(function ($) {
    "use strict";

    jQuery(document).ready(function ($) {
        var oldText = 'old text';
        var newText = 'New text';

        $('.specific_class').each(function() {
            var text = $(this).text();
            $(this).text(text.replace(oldText, newText)); 
        });
    });

}(jQuery));

jQuery provides a quick and efficient way to manipulate text on your website. By combining the power of selectors, loops, and the replace() method, you can easily update content dynamically without modifying the HTML source.

Leave a Reply

Your email address will not be published. Required fields are marked *

ACF

Filter custom post type by Custom Field (ACF) in the admin area

Show filter on custom post type admin area with custom field value

Adding and Removing Class Based on Element Visibility in the Viewport

Add class on element if it come in view and remove not in view

Preventing Duplicate Email Submissions in Elementor Pro Forms

Prevent users from submitting the same email multiple times in an Elementor Pro form with this simple code.

Random slide order in slick sider

Change slick carousel slide order randomly

Web Development Project in mind?

if you looking for a web developer for paid contribution to your project I am available for work.

Mukto
Mukto

Click the button below to chat with me.