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.
<div class='hide'>A</div>
<div class='hide'>B</div>
<div class='hide' id='1'>C</div>

I have a funtion called showOne which should hide all elements and then show the one with id='1'.

funtion showOne(id) {
// Hide all elements with class = 'hide'
$('#'+id).show();
}

How do I hide all elements with class = 'hide' in jquery?

share|improve this question
2  
just a note - You can not have id that starts with number unless it is HTML5 – Bongs May 16 '12 at 5:14

5 Answers

up vote 2 down vote accepted
$('div.hide').hide(300,function() {  // first hide all `.hide`
   $('#'+ id +'.hide').show(); // then show the element with id `#1`
});

NOTE: DON'T USE ONLY NUMERIC ID. NOT PERMITTED. READ THIS

share|improve this answer
Numeric IDs are permitted in html5 - are you aware of a current browser that doesn't support them? – nnnnnn May 16 '12 at 5:28

Try something like:

function showOne(id) {
    $('.hide').not('#' + id).hide();
}

showOne(1);​

Demo: http://jsfiddle.net/aymansafadi/kReZn/

I agree with @TheSystemRestart though, "NOTE: DON'T USE ONLY NUMERIC ID".

share|improve this answer
+1 - Using .not() is a better solution because now you don't have to hide the element you want to show and then show it. Avoiding the "blinking" effect, I think is better UI experience. – alieninlondon Dec 28 '12 at 11:05

I'm almost ashamed of how easy the solution was and that I found it just after writing the question. Just:

$('.hide').hide();
share|improve this answer
If you read an introductory jQuery tutorial (such as one of the ones on jQuery's website) you can learn all about the more common selectors (selecting by id, class, tag name, and selecting via parent/child relationships, etc), but it essentially the same as CSS selector syntax. Once you get the hang of that, deciding which method to call on the selected elements (e.g., .hide()) is the easy part. – nnnnnn May 16 '12 at 5:34

You can hide all components with class as hide using . $('.hide').hide();

share|improve this answer
funtion showOne(id) { 
  $('.hide').hide();
  $('#'+id).show(); 
} 
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.