1
I have the following code:
console.log(ArmazenaIds);
console.log(ArmazenaEmails);
contaQuantidadeDeEmails = ArmazenaEmails.length;
//listando emails selecionados na div .top
for( c=0; c<contaQuantidadeDeEmails; c++) {
$('ul').append('<li>'+ArmazenaEmails[c]+'</li>');
// COLOCANDO CADA EMAIL DENTRO DO VALUE PRA ENVIAR PELO FORM
//USANDO AJAX
$('#novo').append("<input type='hidden' name='emailzinhos[]' value='aff' /> ");
}
How do I place the vector ArmazenaEmails[c]
within the value='aff'
, I don’t know how to do this, I tried with + and it’s giving me syntax error, it’s a question until easy just don’t know the answer.
WOW, THAT’S WHAT I WAS TALKING ABOUT
– Optimus Programador