Hey I am trying to know what is the value of of a check box (true, or false)
but i cant seem to get it write
function getPrice(boxName){
alert(form1.Soft_Top_Cloth.checked) // Hard code box name it works
alert(form1.boxName.checked) // passed threw variable not working
}
<input type="checkbox" name="<%= boxName %>" id="<%= boxName %>>" onchange="getPrice('<%= boxName %>')" />
Thanks for all the help