How could I achieve the following:
document.all.regTitle.innerHTML = \'Hello World\';
Using jQuery where regTitle is my di
regTitle
di
jQuery has few functions which work with text, if you use text() one, it will do the job for you:
text()
$("#regTitle").text("Hello World");
Also, you can use html() instead, if you have any html tag...
html()