Syntax Error 1: at line 2 - please help
I am greating a form with a score rating for work. ex. If the dollar amount is lower then $5000 then its rated a 1, if its between $5000 & $25000 its a 2, if its above $25000 its a 3. I am currently getting an error stating "SyntaxError: syntax error 1: at line 2." Can someone please help me and let me know what is wrong with my code?
if (DH3 >= 1.00) && (DH3 < 5000.00)) {
event.value = "1";
}
else if (DH3 >= 5000.00) && (DH3 < 25000.00)) {
event.value = "2";
}
else if (DH3 >= 25000.00) && (DH3 < 100000.00)) {
event.value = "3";
}
