I have an input filedfield and iI am putting value in it dynamically so iI am getting 01 value to put in the text box
$('#final_result').val(open+close); I have an input field wichwhich id is final_result and iI am getting 0 in open and 1 in close as a number. I try to convert it into string like
$('#final_result').val(toString(open)+toString(close)); but still getting 1 in input iI want 01 in input field.