Hello
I have two hidden field one field display name and second is email id.
1- Validate both field (if email id exist then alert message display message like this
Email ID : main page )
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
ramya bharathPosted Apr 20, 2015, 8:52 AM
Davin MartynPosted Apr 20, 2015, 12:28 AM
ramya bharathPosted Apr 17, 2015, 8:24 PM
Var data=document.getElementById ( "emailid");
if (data!=null && data !== "") { //some code }
else
{
alert ("your message");
}
}
Modify it to your need