but i cant seem to get it write
- Code: Select all
function getPrice(boxName){
alert(form1.Soft_Top_Cloth.checked) // Hard code box name it works
alert(form1.boxName.checked) // passed threw variable not working
}
- Code: Select all
<input type="checkbox" name="<%= boxName %>" id="<%= boxName %>>" onchange="getPrice('<%= boxName %>')" />
Thanks for all the help


