I would like to get all form elements that do not have a specific CSS class. Example:
<form> <div> <input type="text" class="good"/> <input type="text" class="good"/> <input type="text" class="bad"/> </div> </form>
Which selector should be used to select all elements that do not have a "bad" css class?
Thanks.
source share