Answers for "anchor text+jquery+replace +text"

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language