My dilemma may not be fully captured by the title I've chosen, but essentially, I am working with a list of names and I want each one to display a unique description when hovered over with a mouse.
On the surface, this seems like a simple task, right?
However, here's where it gets tricky - these names are stored as elements in an array.
I can't just use < a title="DESCRIPTION" /> ARRAY CODE < /a> because that would give every name in the array the same hover description.
So, my question is: How do I go about coding it so that each name in the array triggers a different hover description?