javascript - Loop the array and fill value in dynamic textbox in jquery -


here splitvalues contains array , .split class in multiline texbox generated dynamically want fill textbox array. have done not getting further?

function insertitems(splitvalues) {     $(".split").each(function () {                    if (splitvalues != "") {             $(this).val(splitvalues);//         }     }); } 

change this:

$(this).val(splitvalues);// 

to this:

$(this).val(splitvalues.join());// 

updates:

$(".split").each(function (i, elem) {                 $(this).val(splitvalues[i]);// }); 

updated demo suggested milind.


Comments

Popular posts from this blog

java - Plugin org.apache.maven.plugins:maven-install-plugin:2.4 or one of its dependencies could not be resolved -

Round ImageView Android -

How can I utilize Yahoo Weather API in android -