I\'m wondering how to select an element that does not have a specific class using JavaScript, not jQuery.
For example, I have this list:
document.querySelectorAll('[wf-body=details] input:not(.switch):not(.btn)').forEach(function(e){ // do whatever you want. with 'e' as element :P });