I'm using CF7 and I need to have a dropdown with a non selectable category "header" such as
US States
AL
AK
AR...etc.
Countries
Afganistan
Albania etc....
With "US States" and "Countries" not an option to submit. Thanks http://wordpress.org/extend/plugins/contact-form-7/[1]
EDIT: I solved the problem myself if anyone has the same issue
I used JQuery and gave the options I wanted to make non-selectable an empty value.
$("option:nth-child(1), option:nth-child(1)").val("");
$("option:nth-child(1), option:nth-child(53)").val("");
});`
