up vote 6 down vote favorite
1
share [g+] share [fb]

How can I find all text fields that have an empty value?

$(":text[value='']")

gives a JavaScript error

I know I can do $(":text"), iterate through and return all fields with $(this).val()==''

I am looking for a cleaner method and using JQuery 1.3.1 It has to work if the element originally had a value when the page was loaded, and then the user cleared it. ($("#elem").attr('value') gives the original value in that place, though .val() works properly)

link|improve this question

50% accept rate
feedback

5 Answers

up vote 9 down vote accepted

Latest Answer: Upgrade to 1.3.2

Here are various tests I ran via FireBug on http://docs.jquery.com/Downloading_jQuery

Different jQuery versions are switched in at page-load with special greasemonkey scripts.

>>> jQuery.prototype.jquery
"1.3.2"
>>> jQuery(":text[value='']")
[input#jq-primarySearch]
Unknown pseudo-class or pseudo-element 'text'.
>>> jQuery(":text[value=]").get()
[input#jq-primarySearch]

>>> jQuery.prototype.jquery
"1.3.1"
>>> jQuery(":text[value='']")
Syntax error, unrecognized expression: value='']
>>> jQuery(":text[value=]").get()
[input#jq-primarySearch]

>>> jQuery.prototype.jquery
"1.3"
>>> jQuery(":text[value='']");
Object length=1 prevObject=Object context=document
Unknown pseudo-class or pseudo-element 'text'.
[Break on this error] undefined
>>> jQuery(":text[value=]").get()
[input#jq-primarySearch]

Note that 1.3 and 1.3.2 handle it properly ( albeit with Firefox sending an error ) but they still get the node right.

Alternatively: you could use the :text[value=] notation, which appears to work everywhere I tried it. Its just a bit suspect thats all.

( Ignore my Previous rantings, they're all bollocks, not having a good day -_-)

link|improve this answer
this doesn't work in jquery 1.3.1 – questioner Mar 11 '09 at 17:18
So only 1.3.1 has this problem... Thanks – questioner Mar 11 '09 at 20:18
feedback

You were close. There's no assignment in jQuery selectors, so you only need a single '=':

$(":text[value='']")
link|improve this answer
sorry, question edited to remove the extra '='. That gives me an error using jquery 1.3.1 – questioner Mar 11 '09 at 16:24
Seems the issue is with passing an empty value to an attribute selector. – Neil Aitken Mar 11 '09 at 16:42
I'm not sure what you're doing ngz, but this answer works for me. theres the potential though your empty values are getting removed from the dom :) – Kent Fredric Mar 11 '09 at 17:01
feedback

This seems to work for me

$(":text:not([value])")
link|improve this answer
this does not give a Javascript error, but if the element originally had a value and the user cleared it, it will not be selected. – questioner Mar 11 '09 at 17:24
I had a feeling it may be problematic, as it only specifies the attribute and not the value. – Neil Aitken Mar 11 '09 at 19:44
feedback

I've just tried this and worked fine for me:

$(":text[value=]")

I just removed single quotes in selector.

link|improve this answer
This seems to work for me too. Although, I'm not sure if it is 100% equivalent. I'm afraid that it might act as $(":text[value]") in some situation. – Matthijs Wessels Jan 23 at 16:04
feedback

Shot in the dark as I haven't tested it, but does this work:

$(":text:empty")
link|improve this answer
1  
No, :empty will select all text fields, because it matches fields with no children – questioner Mar 11 '09 at 16:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.