select filled/empty text inputs
Hi all,
is there any way to reduce the set of matched elements to text inputs wich are empty and not empty ?
jQuerySet = jQuery('#formID');
empty = jQuerySet.has('[type=text]:empty');
notEmpty = jQuerySet.has('[type=text]:not(:empty)');