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.
That's because trim() is not a pre-defined function in javascript. However, it's an easy 1-liner to set up our own custom method:If I take out the trim(), then it works.
[!]String.prototype.trim = function() {return this.replace(/^\s+|\s+$/g, "");};[/!]
function verify()
{
if ((document.getElementById("TextBox1").value)[!].trim()[/!] !== "")
{
processI();
}
else
{
alert("WBS Required!");
return false;
}
}