10.07.2017 Views

javascript_tutorial

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Javascript<br />

var emailID = document.myForm.EMail.value;<br />

atpos = emailID.indexOf("@");<br />

dotpos = emailID.lastIndexOf(".");<br />

if (atpos < 1 || ( dotpos - atpos < 2 ))<br />

{<br />

alert("Please enter correct email ID")<br />

document.myForm.EMail.focus() ;<br />

return false;<br />

}<br />

return( true );<br />

}<br />

//--><br />

<br />

356

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!