jquery replace string in text code example
Example 1: jquery replace element
$("elementsSelector").replaceWith( "<h2>New content</h2>" );
Example 2: jquery replace text
$('#id1 p').each(function() {
var text = $(this).text();
$(this).text(text.replace('Kate', 'Nef'));
});
Example 3: jquery replace text in div
$('#one span').text('Hi I am replace');
Example 4: replace jquery
$("p:first").replaceWith("Hello world!");