vote up 0 vote down star
1

Hey all,

I have 2 fields: 1 input, 1 select box.

Is it possible to make the browser disable one of the fields when the user uses the other?

For example, if the user is entering data into the input, the select box is disabled. If the user is selecting data from the select (dropdown), the input is disabled.

Any help with this would be much appreciated.

Cheers in advance.

flag

3 Answers

vote up 3 vote down
<script type="text/javascript" src="jquery.js"></script>          
<script type="text/javascript">
  $(document).ready(function() {
      $("#suburb").blur(function() {
          if ($(this).val() != '')
              $("#post_code").attr("disabled", "disabled");
          else
              $("#post_code").attr("disabled", "");
      });

      $("#post_code").blur(function() {
          if ($(this).val() != '')
              $("#suburb").attr("disabled", "disabled");
          else
              $("#suburb").attr("disabled", "");
      });
  });
</script>

You'll also need to add a value attribute to the first option under your select element:

<option value=""></option>
link|flag
Hey bigmattyh, Thanks for you quick reply. Unfortunately, the script isn't working for me. Is there something I need to be doing in order for the script to work? Below is my code: <input class="textfield" type="text" name="post_code" id="post_code" maxlength="4" /> <select size="6" name="suburb" id="suburb" /> <option selected="selected"></option> </select> – unknown (google) Sep 7 at 2:50
Well, you'll need to include jQuery, and put this code into a $(document).ready() block (updated to relfect this). As for your HTML, you will need a default value on that select box, to make this work reliably. – bigmattyh Sep 7 at 2:55
Thanks for you efforts. Unfortunately, it is not working for me. Cheers. – unknown (google) Sep 7 at 3:01
Maybe you could post more of your code. It's awfully hard to diagnose what's wrong without seeing the code. – bigmattyh Sep 7 at 3:06
Again thank you. Perhaps I didn't accurately describe what I am trying to achieve. As you know there are 2 fields: input, select. when one is entering data into the input, the select field should be disabled. The same for when selecting from the select field. The issue is, one has to 'click off' the fields for the other to become 'abled' again. Below is my code: <input class="textfield" type="text" name="post_code" id="post_code" maxlength="4" /> <select size="6" name="suburb" id="suburb"> <option selected="selected" value=""></option> </select> Cheers. – unknown (google) Sep 7 at 3:22
show 2 more comments
vote up 0 vote down

try this

$("#inp").focus(function(){$("#sel").attr('disabled','true');});

$("#inp").blur(function(){$("#sel").removeAttr('disabled');});

vice versa for the select also.

link|flag
Thanks for you efforts. Unfortunately, it doesn't work. – unknown (google) Sep 7 at 6:12
can u add details as to what happened ? I tried it in IE was working fine. – Nrj Sep 7 at 8:43
Hey Nrj. Thanks for replying. I added the script. But nothing happens. I've added $(document).ready(function() and tried different ID names, but nothing happened. Cheers. – unknown (google) Sep 8 at 6:31
vote up 0 vote down
$('input, select').attr('disabled', 'disabled');
link|flag

Your Answer

Get an OpenID
or

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