I have a list of elements, say a list of rows in a table:
$('#minha_tabela tr');
Is there a selector, method or overload in jQuery so I can return more than one line passing multiple indexes?
Something like,
$('#minha_tabela tr').get(0, 2, 7);