How could I achieve the following:
document.all.regTitle.innerHTML = \'Hello World\';
Using jQuery where regTitle is my di
regTitle
di
jQuery's .html() can be used for setting and getting the contents of matched non empty elements (innerHTML).
.html()
innerHTML
var contents = $(element).html(); $(element).html("insert content into element");