Answers for "jquery replace text with html"

3

jquery replace text

$('#id1 p').each(function() {
    var text = $(this).text();
    $(this).text(text.replace('Kate', 'Nef')); 
});
Posted by: Guest on January-09-2021
6

jquery replace html

$(element).html("Hello World");
Posted by: Guest on March-16-2020

Code answers related to "jquery replace text with html"

Code answers related to "Javascript"

Browse Popular Code Answers by Language