Advertisement
Guest User

Untitled

a guest
May 26th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         ValueTot = "";
  2.        
  3.         //transferer les valeur de l'input dans le select de droite
  4.         for (x in ValueOpt)
  5.         {
  6.             document.form_aff.selection[document.form_aff.selection.length] = new Option(ValueOpt[x],nbOpt);
  7.             nbOpt++;
  8.             ValueTot = ValueTot + ValueOpt[x];
  9.         }
  10.         alert(ValueTot);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement