I have this line of code
var songs = document.getElementsByTagName("span");
var songArray = jQuery.makeArray(songs);
$(songArray).appendTo(document.body);
Which looks for span tags on a page, creates an array then displays them. I don't know if that's the best way to do it but it works. But the problem I'm having is I want to display the array and if there is a duplicate in that array, it deletes the duplicate and increases the font size of the first instance of it. Not sure how to get that done.