This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p id="demo"> This element has extra spacing and contains <span>a span element</span>.</p> | |
<button onclick="getInnerText()">Get innerText</button> | |
<button onclick="getHTML()">Get innerHTML</button> | |
<button onclick="getTextContent()">Get textContent</button> | |
<p id="demo"></p> | |
<script> | |
function getInnerText() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p id="demo"> This element has extra spacing and contains <span>a span element</span>.</p> | |
<script> | |
function getInnerText() { | |
alert(document.getElementById("demo").innerText) | |
} | |
function getHTML() { | |
alert(document.getElementById("demo").innerHTML) | |
} |