How To Change innerHTML Of A Div Using JQuery
Here we consider how to change the innerHTML of Div using Jquery.
Lets start with one example here.
Suppose we have a div with ID DivID as shown below.

We can change the innerHTML of this Div using Jquery as shown below.
$("#DivID").html("Hello World");
We can change the text of this Div using Jquery as shown below.
$("#DivID").text("Hello World");