I have a jQuery DOM element node
, and I want to search few elements from node
. I have two solutions here
1 : node.find('a,b,c,d,e').each(..)
2 : node.find('a')...., node.find('b')....
3 : node = jQuery([]).pushStack( node.find('a,b,c,d,e') ) etc..
Which one is preferable with large DOM element. I am looking for only speed.