Append link title attribute to link body
I'm trying to append the title attribute to the text of my link. I've got it working, except for the fact that all three links are showing the first link's attribute. Check out the demo at
http://outdoor/fuelmultimedia.ca Hover over the Products menu item, and you'll see the drop-down with the attributes.
This is the code I'm currently using:
- var $titleText = $("#top nav ul ul li a").attr("title");
- $("#top nav ul ul li a").append("<em>" + $titleText + "</em>");