Have the below textbox array
Jquery function
function addMore(id,colonId)
{
var y =$('#'+id).children().size();
var max_fields=5;
if(y < max_fields){
y++;
$('#'+colonId).children().clone().appendTo('#'+id);
$('#'+id).find('input:disabled').prop("disabled", false);
}
else
{
alert('Limit to add more exceeded!');
}
}
Now i have stored the 4 values as comma separated in database
Apple,Mango,Orange,Cherry
How do i display and fill the 4 textboxes with individual value in it
Naveen KumarPosted Oct 26, 2017, 8:57 AM
")
Rajeesh MenothPosted Oct 26, 2017, 3:32 AM