Back
How could I achieve the following:
document.all.regTitle.innerHTML = 'Hello World';
Using jQuery where regTitle is my div ID?
Try using the code given below:
$("#regTitle").html("Hello World");
31k questions
32.8k answers
501 comments
693 users