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.
var textArray = new Array();
for(var i=0; i<textAreaName.value.length; i+=60)
textArray[textArray.length] = textAreaName.value.substring(i, i+60);
for(var i=0; i<sym.value.length; i+=60)
{
textArray[textArray.length] = sym.substring(i, i+60);
alert(textArray[textArray.length - 1];
}
function gatherText()
{
var textArray = new Array();
[b]//load the array[/b]
for(var i=0; i<textAreaName.value.length; i+=60)
{
textArray[textArray.length] = textAreaName.value.substring(i, i+60);
}
[b]//fill it up with blanks[/b]
for(var j=textArray.length; j<12; j++)
{
textArray[textArray.length] = "";
}
[b]//this will show you the array contents[/b]
for(var k=0; k<textArray.length; k++)
{
alert(k + ": " + textArray[k]);
}
}