Posts by Gabriel katakura • 1 point
1 post
-
-2
votes3
answers1766
viewsA: How do I get the column number of the table where an input I’m writing is?
Either you create a property in the element or you can apply a logic based on the code below: var tr = document.createElement('tr'), td = document.createElement('td'); tr.appendChild(td); //…