SyntaxError: syntax error 4 at line 5
Copy link to clipboard
Copied
I'm trying to make a dependent drop down, I dont want to add anymore options until I get this error straightened out.
Copy link to clipboard
Copied
You must only use straight quotes, not curly ones, like after "BERGEN" in the code above (and maybe elsewhere, too).
Copy link to clipboard
Copied
Thank you, I thought I had fixed them all but it starts to blend after looking at it for so long.
Copy link to clipboard
Copied
You have few errors, 'colon' should be used after statement, not after 'case':
case: '18.XX GENESEE' should be case '18.XX GENESEE':
and case: 'Choose an option' should be case 'Choose an option':
Also add 'break' in the last statement or use:
default:
f.clearItems();
Copy link to clipboard
Copied
After moving the colon it and correcting the one quotation this went through, thank you for your help.

