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 post form with a first dropdown for choosing a category and a second for choosing a subcategory. The second one changes according to the first category that was chosen.

I have many dropdowns and I show the most correct one depending on the chosen category.

I need to disable all dropdowns and enable that one so that I can submit the form correctly.

<select name='dropdown'></select>
<select name='dropdown'></select>
<select name='dropdown' id='1'></select>

How can I disable all selects with name = 'dropdown' except the one with id='1'?

share|improve this question
2  
don't user numeric id – The System Restart May 16 '12 at 5:25
1  
numeric id's can be apart of html5 w3.org/TR/html5/elements.html#the-id-attribute – ankur verma May 16 '12 at 5:34
1  
@ankur20us - just because you can use them, doesn't mean you should. Numeric IDs are a very bad idea. – Spudley May 16 '12 at 21:24

3 Answers

up vote 0 down vote accepted
$('select.dropdown').attr('disabled', true);
$('select#1').attr('disabled',false);
share|improve this answer
sorry the question was not correct. I need to enable '#1' not ignore it. – Liso22 May 16 '12 at 5:29
This will enable #1 – ubercooluk May 16 '12 at 5:43
$('select.dropdown').prop('disabled', true);
$('select.dropdown#1').prop('disabled', false);
share|improve this answer
sorry the question was not correct. I need to enable '#1' after disabling all not ignore it. – Liso22 May 16 '12 at 5:30

Please, Use below jquery line.

$('select:not("#1")').attr('disabled', true);​​​

jsfiddle demo here

For more information visit jquery docs.

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.