I'm wondering which is the best way to call a function for each of these element in the code below:
for (var y=1; y <= 24; y++) {
$("#christmasCalendar").append("<div class='span2'><h1><a href='#' data-toggle='tooltip' class='thumbnail' title='Click to add a question for this day'>"+y+"</a></h1></div>")
}
Like if I want to call this function:
$("#createChristmasDayQuiz").click(function () {
$("#QuizGuideInfo").delay(1000).fadeIn('slow');
$("div.infoHolder").html('<i class="fa-icon-bullhorn"></i>Select a color theme for your christmas calendar. This can be changed later.').hide().fadeIn('slow');
$('#createQuiz').modal('show');
});
I know they can't have the same ID, but still, which is the best solution?
Thanks in advance!