Here is how we can get the value from a table element like td, th or tr having id or name attribute,
<table>
<tr>
<td id="td_tag">Test</td>
</tr>
</table>
For the above td tag we can get the inner content by,
document.getElementById("td_tag").innerText;
document.getElementById("td_tag").textContent;
Example:
<html>
<head>
</head>
<body>
<table>
<tr>
<td onClick="getTableInnerConent();" id="td_tag">This is some text!</td>
</tr>
</table>
</body>
<script>
function getTableInnerConent() {
alert(document.getElementById("td_tag").innerText);
alert(document.getElementById("td_tag").textContent);
}
</script>
</html>
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!