I have an array called selected as follows :
var selected = [];
example value of selected from console would return :
["97", "98", "99", "101", "103", "105", "106"]
I need to turn these into a multiple selector of ids... for example :
$('#97', '#98', '#99', '#101', '#103', '#105', '#106').click( function () {
alert('hi');
});