As I understand, $(input).not('[attribue*="string"]').val()
is a collection of input with value that have attribute that has string. And if one is false, all is false. How can I isolate the one that is false?$(input).('[attribue*="string"]').val()
only returns or checks the value of the first item in the collection. How can I check using ``$(input).('[attribue*="string"]')` if one of them has a value?
Here is a jsFiddle of sample code.