jquery.html code example
Example 1: inner html jquery
$('#selector').text('Your text here');
Example 2: jquery in html
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
Example 3: .html jquery in javascript
var content = document.getElementById("id").innerHTML;
Example 4: innerhtml jquery
var itemtoReplaceContentOf = $('#regTitle');
itemtoReplaceContentOf.html('');
newcontent.appendTo(itemtoReplaceContentOf);
Example 5: how to put html inside jquery text
$('div.demo-container').html('<p>All new content. <em>You bet!</em></p>');