Form
HEllo,
i am performing form validation on text area....i have used....
if (Appery('textareaname').val()=== " ")
{
statements
}
else
{
statements
}
and also i have used...
if (Appery("textareaname").attr("value") === " ")
{
statements
}
else
{
statements
}
both seems to console the contents of textareaname when i try to console it but seems not to perform any form validation pls help me ...