I have a list of (at least 4) < a > tags with the class 'remove-typefilter' They do not have a 'href' ., but I want to give them all one when the users clicks a button.
This is the JS function I've written to achieve this:
function BuildButtons(urlparams) {
    elements = document.getElementsByClassName('remove-typefilter')
    for (let element in elements) {
        element.href = 'www.newlink.com' + urlparams
        element.style = 'color: red;'
    }
}
Yet when I run this function it does not change the attributs. The A tags get no link and the styling goes not change.
Does anyone know what I am doing wrong?
 
     
     
     
    