For my project I'm using cached selectors to speed up, and see improvements: (to reduce searches inside the document)
var sel1 = $('#selector1');
var sel2 = $('#selector2');
how can I use cached selectors in this situation? for ex:
$('#selector1, #selector2').fadeTo(300, 1, 'linear');
It's just to polish up my code
Ty :)