Say we have the following:
node[1].name = "apple";
node[1].color = "red";
node[2].name = "cherry";
node[2].color = "red";
node[3].name = "apple";
node[3].color = "green";
node[4].name = "orange";
node[4].color = "orange;
If I use jQuery.unique (node), I will get all the source nodes, because they all have a different name or color. I only want to get nodes with a unique name that should return
node[1] (apple)
node[2] (cherry)
node[4] (orange)
He should not return 3, because it is the same fruit, although we have green and red apples.
source
share