How could I achieve the following:
document.all.regTitle.innerHTML = \'Hello World\';
Using jQuery where regTitle is my di
regTitle
di
Example
$( document ).ready(function() { $('.msg').html('hello world'); });