I'm working with jQuey and I need to add many variables for a style; an example:
$("#id-one").css({display:"none"});
I want something like:
$("#id-one","#id-two").css({display:"none"});
I don't know if it is possible, or if it can be, is there some way to make this?