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;
}