Answers for "how to select a class and then change the children of that class with javascript"

0

how to select a class and then change the children of that class with javascript

//First store your class inside a variable and then select it with query selector
var x = document.querySelectorAll('.location-address');
x[0].innerHTML += '<br><a href="https://www.yahoo.com">';
x[1].innerHTML += '<br><a href="https://www.google.com">';
x[2].innerHTML += '<br><a href="https://www.microsoft.com">';
Posted by: Guest on November-20-2020

Code answers related to "how to select a class and then change the children of that class with javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language