jquery get innerhtml code example

Example 1: jquery replace innerhtml

$("#myID").html("<div>New inner html</div>"); //replace element innerHTML in jQuery

Example 2: jquery get child div

$(this).children('div').show();

Example 3: inner html jquery

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

Example 4: jquery get element innertext

const copiedText = $('#element').text();

Example 5: jquery find by innertext

$( "div:contains('innerText')" );

Example 6: jquery set html of element

$("button").click(function(){
  $("p").html("Hello <b>world</b>!");
});