I have a UL with 9 anchor tags, each with the class 'highlight'.
Here is a bit of Javascript with jQuery:
var titles = $('a.highlight');
jQuery.each(titles, alert(titles.length));
What I expect this bit of code to do: Alert 9 times, the number 9.
What this bit of code actually does: Alerts 1 time the number 9.
What am I missing?