JavaScriptでテキストボックスを動的に作成しました。問題は動的に作成されたテキストボックスにあります。JavaScriptが初めてなので、datepickerを使用する必要があります
親切に助けてくれてありがとう
row_no4=0;
var index=1;
function addRow_otherschsp(tbl4,row5){
var textbox3a = '<input type=\"text\" size = \"10\" maxlength= \"10\" name=\"othrFA3'+tick+'\" id=\"othrFA3'+tick+'\" placeholder=\"dd/mm/yyyy\" >';
var newRow = tbl4.insertRow(row_no4);
var newCell = newRow.insertCell(0);
newCell.innerHTML = label3;
var newCell = newRow.insertCell(1);
newCell.innerHTML = "From "+textbox3a+ "To &`enter code here`nbsp;"+ textbox3b;
row_no4++;
}