jquery replace content 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 html

$(element).html("Hello World");

Example 4: jqueryreplace content of div

$('#content-container').html(linkText);

Example 5: inner html jquery

$('#selector').text('Your text here');

Example 6: jquery replace text in div

$('#one span').text('Hi I am replace');