Question: Please guys, I need help in this sample javascript code, I want to edit this code to give the total of the chossen selectboxs at
Please guys, I need help in this sample javascript code, I want to edit this code to give the total of the chossen selectboxs at the end, for example each select box cost 0.50 cents, if the user clicks on all the three the total will show up as 1.50. and thak you
function readPractice()
{
var values = " ";
if ( document.practice.checkgroup[0].checked )
values= values + document.practice.checkgroup[0].value;
if ( document.practice.checkgroup[1].checked )
values= values + document.practice.checkgroup[1].value;
if ( document.practice.checkgroup[2].checked )
values = values + document.practice.checkgroup[2].value;
document.write(" You checked: " + values);
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
