Say I have a list of links with duplicate values as below:
<a href="#">Book</a>
<a href="#">Magazine</a>
<a href="#">Book</a>
<a href="#">Book</a>
<a href="#">DVD</a>
<a href="#">DVD</a>
<a href="#">DVD</a>
<a href="#">Book</a>
How would I, using JQuery, remove the dups and be left with the following for example:
<a href="#">Book</a>
<a href="#">Magazine</a>
<a href="#">DVD</a>
Basically I am looking for a way to remove any duplicate values found and show 1 of each link.