Hi folks! I have this loop
for( i=1; i < 65; i++){
$('#peperszmit1 #tabs-1 #checkBoxHolder').append('<div class="individualCheckbox"><input type="checkbox" id="checkBoxik'+i+'" name="game1" /> HERE.. </div>');
}
and where it says HERE.. i would like to display value of i . If i just write i inside the div i get 65 checkboxes with "i" next to them. I would like to have a number instead.
Thanks!