Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a scenario where I need to show a bunch of buttons only when ANY of a group of input fields contains a value and hide the buttons when ALL of the input fields are empty.

Can't come up with an elegant way to do that other than by attaching some code to the focus event of the input fields to check their content and show/hide accordingly.

Is there a better way to do this?

thanks

share|improve this question

2 Answers

up vote 2 down vote accepted

HTML

<form id="myForm">
    <input .../>
    <select .../>
    <!-- etc. -->
</form>

JavaScript

$(function ()
{
    var $myForm = $('#myForm'),
        $inputs = $myForm.find('input, select'),
        $buttons = $('select a bunch of buttons');

    $myForm.change(function ()
    {
        $buttons.toggle(!!$inputs.filter(function ()
        {
            // NB, using .val() won't work for checkboxes
            return !!$(this).val();
        }).length);
    }).change();
});

http://jsfiddle.net/mattball/BjQaZ/

share|improve this answer
I like the way you attached to the change event on the form - never used that - #Nice – Xander Apr 6 '11 at 2:31
@Alexander, that's how I was going to code it. Thanks for saving me typing the code ;) Like u, never tried @Matt's change event on the form. Nice. Many thanks to both of you. Cheers! – djeetee Apr 7 '11 at 1:18
$(function(){

   var $fields = $('input[type=text]'),
       $btn = $('#btnid'),
       i;

   $btn.hide();

   $fields.blur(function(){
      for(i = 0; i < $fields.length; i++){
         if($fields[i].value != '') {
            $btn.show();
            return;
         }
      }
      $btn.hide();
   });
});

http://jsfiddle.net/crVeA/3/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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