Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function addBoxs(num) {
for (count = 0; count = num; count++) {
var lng = frm.length + 1 + count;
var Nfld = "numbers" + lng;
var o_newInput = document.createElement("INPUT");
o_newInput.type="text";
o_newInput.id="' + Nfld +'"
o_newInput.onClick= getRef("Number_Onclick");
frm.appendChild(o_newInput);
}
}
function Number_Onclick {
var o_srcElem = window.event.srcElement;
alert ("You clicked input " + o_srcElem.id);
}