JavaScript element.innerHTML Property
You are Here:
JavaScript element.innerHTML Property
The element.innerHTML
property gets or sets the HTML or XML markup contained within the element.
Tips: To insert the HTML into the document rather than replace the contents of an element, use the method insertAdjacentHTML().
Get the innerHTML
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<p><a href="/jquery">Learn jQuery</a></p>
<p>Click on the button to get the innerHTML of p tag.</p>
<button onclick="myFunction()">Click Me</button>
<p id="point"></p>
<script>
var x = document.getElementById("point");
var elem = document.getElementsByTagName("p")[0];
function myFunction(){
x.innerText = elem.innerHTML;
}
</script>
</body>
</html>
Syntax
element.innerHTML
Return Values
Value | Explanation |
---|---|
String | Returns a DOMString containing the HTML serialization of the element's descendants. |
Set the innerHTML
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<p></p>
<p>Click on the button to add "Jquery Link" to the paragraph.</p>
<button onclick="myFunction()">Click Me</button>
<script>
var elem = document.getElementsByTagName("p")[0];
function myFunction(){
elem.innerHTML = '<a href="/jquery">Learn jQuery</a>';
}
</script>
</body>
</html>
Reminder
Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in JavaScript.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.