How could I achieve the following:
document.all.regTitle.innerHTML = 'Hello World';
Using jQuery where regTitle is my div id?
regTitle
div
$("#regTitle").html("Hello World");