A user clicks on a row of a table, and I want to get (in Javascript) the innerhtml of let\'s say the 3rd column of that row.
Something like :
documen
in case if your table has tbody
let tbl = document.getElementById("tbl").getElementsByTagName('tbody')[0]; console.log(tbl.rows[0].cells[0].innerHTML)