queryselector where attribute is 3 code example
Example: js queryselector find without attribute
var test = document.querySelectorAll('input[value][type="checkbox"]:not([value=""])');
var test = document.querySelectorAll('input[value][type="checkbox"]:not([value=""])');