how i can change or add the href Attribute to a tag using javascript with condition for example if the value were between 10 and 15 add this path link and so on
and here is the code,, can anyone help me
<a class="smt" href="#" onclick="result()">go
</a><input type="text" name="sum"/>
var vo;
var vo = document.querySelector('[name="sum"]').value; //take value from textbox
var a = document.getElementsByClassName("smt");
function result(vo,a){
if(vo >= 10 && vo <= 15){
a.href ="../result/result1.html";
}
}