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