How could I achieve the following:
document.all.regTitle.innerHTML = \'Hello World\';
Using jQuery where regTitle
is my di
Answer:
$("#regTitle").html('Hello World');
Explanation:
$
is equivalent to jQuery
. Both represent the same object in the jQuery library. The "#regTitle"
inside the parenthesis is called the selector which is used by the jQuery library to identify which element(s) of the html DOM (Document Object Model) you want to apply code to. The #
before regTitle
is telling jQuery that regTitle
is the id of an element inside the DOM.
From there, the dot notation is used to call the html function which replaces the inner html with whatever parameter you place in-between the parenthesis, which in this case is 'Hello World'
.