vote up 1 vote down star
2

How can you say the following in jQuery?

If If textarea AND input.title are NOT empty, then put input.button ON.

My attempt in pseudo-code

if ( $(textarea).not.empty() AND $(input.title).not.empty() ) {
   $('.ask_question').attr('enabled, 'enabled'); 
}
flag

5 Answers

vote up 3 vote down

What would jQuery-jesus do?

$('textarea').is(":contains('')")

or

$('input.title').is(":empty")

I suppose ;)

link|flag
1  
This solution is actually better than mine :) – Mike Aug 28 at 9:54
Does that work like an IF statement? If so, it seems less readable. – Nathan Long Aug 28 at 12:39
jQuery.is() returns a boolean and I'd say that it's very readable :) – Mickel Aug 28 at 14:59
vote up 1 vote down
if ( $("textarea:empty").length == 0 && $("input.title:empty").length == 0 ) {
   $('.ask_question').attr('enabled', 'enabled'); 
}

The method property length of jQuery returns the number of elements which were selected. :empty is a selector for jQuery to select elements which have no child or no text.

So,

if (number of empty textarea is 0) AND (number of empty input with the class title is 0) then
   enable somthing!
link|flag
2  
length is a property, not a method. – nickf Aug 28 at 9:55
Firebug gives me the following error for your code: $("textarea:empty").length is not a function – Masi Aug 28 at 10:13
Thanks nickf, have overseen that one – Mike Aug 28 at 12:28
vote up 0 vote down
if ($("#myTextArea").val().length != 0 AND $("#myTextBox").val() != 0) {
   $('.ask_question').removeAttr("disabled"); 
}

You can use "textarea" and "input[class='title']", but it is possible for these to return multiple results.

link|flag
1  
Your code seems to need this .length after the second .val(). However, I have not yet managed to get your code to work with or without the addition. – Masi Aug 28 at 10:02
Well spotted, it does need .length after val(). Do you get an error or unexpected results? – Sohnee Aug 29 at 20:40
vote up 0 vote down

Not too far off.

if ( $("textarea").val().length && $("input.title").val().length ) {
  $('.ask_question').removeAttr('disabled'); 
}
link|flag
Shouldn't you be comparing the length to something - or are you relying on 0 being implicitly converted to false? – Sohnee Aug 28 at 9:25
Try it out :) – Andy Gaskell Aug 28 at 9:27
Yes - I was trying to point out rhetorically that an implicit cast of an integer to boolean isn't very nice. – Sohnee Aug 28 at 9:29
2  
I think it's very nice! – Andy Gaskell Aug 28 at 9:39
@andy, i totally agree. having 0 == false is a very hand shortcut, which cuts a lot of useless verbosity from your code. – nickf Aug 28 at 9:54
vote up -1 vote down
if ( $("textarea").val() != "" && $("input.title").val() != "" ) {
   $('.ask_question').attr('enabled', 'enabled'); 
}
link|flag
You're missing a quote there: should be attr('enabled', 'enabled'). – John Feminella Aug 28 at 9:21
$(textarea).value() - value() isn't a jQuery method - it's val(). Also the selectors should be enclosed in quotes and ideally only return a single item. – Sohnee Aug 28 at 9:23
.attr('enabled', true) works too. – nickf Aug 28 at 9:56

Your Answer

Get an OpenID
or

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