Text1 Text2
I
As an additional note, rather than scanning for exact text inside a link it might be better to be scanning for attributes, e.g.
Carrot Seed Spinach Seed Pear Tree
Now you can (accurately) scan for:
all_seeds = $('a[data-item-type="seed"]');
(I'm a big fan of the data-* attributes.)