Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hi am fresher to javasript programing how can i validate the emaill colum in a form, actually i have done something that code i given here please guide me to next step ...


function fname()
{
C#
if (document.getElementById("imail").value == "" )
                {
                document.getElementById("imailMSG").style.display = "block";
                return false;
                }
            else
                {
                document.getElementById("imailMSG").style.display = "none";
                }


}
please guide what next....
Posted

1 solution

Email validation in client side
Client Side Validation using JavaScript[^]

Thanks
--RA
 
Share this answer
 
Comments
Manuel john 1-Jul-13 8:51am    
thanks your replay brother am one of the fresher in html in that given code(see my question) what to do next please give an idea

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900