I have a drop down box in a form field and based on the selection within that drop down box another form field is multiplied by a number determined by the drop down box selection. I hope that explains it well enough. I'm not experienced at all with javascript so I might way off.
Here is the code that I have written.
if (ComboBox2 == weekly){
MonthlyNetIncomeSalaryWagesSelf == NetPerCheckSalaryWagesSelf * 4.2;
} else if
(ComboBox2 == bi-weekly){
MonthlyNetIncomeSalaryWagesSelf == NetPerCheckSalaryWagesSelf * 2.1;
} else if
(ComboBox2 == monthly){
MonthlyNetIncomeSalaryWagesSelf == NetPerCheckSalaryWagesSelf * 1;
}
Any help would be much appreciated.
In other words, the more details you provide the better.
George