I am trying to fill up all the input fields of a webpage (having input IDs ending with txtValue) which are filled with the word ‘dog’ to be replaced with the word ‘cat’.
I have tried this code, but it isn’t working. Kindly help me to solve this. Thank you in advance.
const ta = document.querySelectorAll("[id$='txtValue']");
const str = ta.value.replace("dog","cat");
ta.value = str
console.log(ta.value,"change to" ,str)