<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?
idthat starts with number unless it is HTML5 – Bongs May 16 '12 at 5:14