Javascript Validatation
Posted: Thu Jul 25, 2013 8:17 pm
Hello,
I am having difficulty with this simple validation function working on a button click event. Any ideas on what might be wrong? Thank you.
var input = Appery('inputUserName');
if (input==null || input=="")
{
alert("User name is required");
return false;
}