Bernd Matzner schreef:
> Hi,
>
> is there a way to manipulate different selectors in one step?
>
> $('#a').show();
> $('#b').show();
> $('#e').show();
>
> I.e. I don't want to replicate the show() part three times, but sort
> of "group" the #a, #b, #e selectors. Of course, this is an example, I
> need a general method of achieving this.
>
>   
just use a comma separated string

$('#a, #b, #e').show();



-- 
David Duymelinck
________________
[EMAIL PROTECTED]


_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to