<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: adminlokesh</title>
    <description>The latest articles on DEV Community by adminlokesh (@adminlokesh).</description>
    <link>https://dev.to/adminlokesh</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F669290%2F9f098ca2-ca1f-49f4-9a1e-a026f3662869.png</url>
      <title>DEV Community: adminlokesh</title>
      <link>https://dev.to/adminlokesh</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/adminlokesh"/>
    <language>en</language>
    <item>
      <title>Email Validation in JavaScript
</title>
      <dc:creator>adminlokesh</dc:creator>
      <pubDate>Sun, 18 Jul 2021 10:29:59 +0000</pubDate>
      <link>https://dev.to/adminlokesh/email-validation-in-javascript-410i</link>
      <guid>https://dev.to/adminlokesh/email-validation-in-javascript-410i</guid>
      <description>&lt;p&gt;Now we are going to explain all about email validation with the using of JavaScript also displaying few example see in the below section. &lt;br&gt;
Here we are provide a code of function. which is the best example for validation.&lt;/p&gt;

&lt;p&gt;function email_funnction() {&lt;br&gt;
            var email = document.emailform.email.value;&lt;br&gt;
            if(email.indexOf('@')&amp;lt;=0){&lt;br&gt;
                document.getElementById('errormsg').innerHTML="Invalid your Email Address";&lt;br&gt;
                return false;&lt;br&gt;
            }&lt;br&gt;&lt;br&gt;
            if ((email.charAt(email.length-4)!='.') &amp;amp;&amp;amp; (email.charAt(email.length-3)!='.')) {&lt;br&gt;
                document.getElementById('errormsg').innerHTML="Invalid your Email Address";&lt;br&gt;
                return false;&lt;br&gt;
            }&lt;br&gt;
        }&lt;br&gt;
This is the function you can check and apply any form for email validation. So if you want more information and example with the html of &lt;a href="https://wlearnsmart.com/email-validation-in-javascript/"&gt;Email Validation in JavaScript&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
