How could I achieve the following:
document.all.regTitle.innerHTML = \'Hello World\';
Using jQuery where regTitle
is my di
If you instead have a jQuery object you want to render instead of the existing content: Then just reset the content and append the new.
var itemtoReplaceContentOf = $('#regTitle');
itemtoReplaceContentOf.html('');
newcontent.appendTo(itemtoReplaceContentOf);
Or:
$('#regTitle').empty().append(newcontent);