To obtain the id of an input text element from a list of input elements in HTML using JavaScript, you can use the following code:
index.tsx354 chars8 lines
This code first gets all the input elements using document.getElementsByTagName('input')
. It then loops through each input element and checks if its type is 'text' using inputList[i].type === 'text'
. If it is a text input, it gets the id of the input using inputList[i].id
and prints it to the console using console.log(id)
.
gistlibby LogSnag