In Javascript, I am getting a string like I have a string exactly like
H01=13 H02=12 H03=43 H04=56..... ?
I want to split the string and give it to the different textboxes in the page like
txtHeight01's value(text) is 13
txtHeight02's value(text) is 12
txtHeight03's value(text) is 43
Part of the code would be like
paddedcounter = i.padLeft(2, '0'); //(i is for(i=0;i<3;i++)
$('#txtHeight' + paddedcounter).val()=//These will the values from the splitted string.