Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

get the text of a tag

var el = document.querySelector('div');
text = el.textContent || el.innerText;
console.log(text);
Source by plainjs.com #
 
PREVIOUS NEXT
Tagged: #text #tag
ADD COMMENT
Topic
Name
7+5 =