I\'m using:
document.querySelectorAll(\'input[value=\"\"]\')
But it\'s not selecting inputs that doesn\'t have the attribute value
value
Try
document.querySelectorAll('input:not([value])')
This should return all the input that don't have the value attribute.
input