Page 1 of 1

Write a JavaScript function to validate a text-field on a form that is to hold an email address. Now when writing this J

Posted: Fri Jul 08, 2022 6:44 am
by answerhappygod
Write a JavaScript function to validate a text-field on a form that is to hold an email address.
Now when writing this JavaScript function bear in mind that you won't be able to fully validate
it unless you manage to interrogate the server in which it's supposed to reside. This is almost
impossible, so the validation should check that the contents of the text-field only looks like a
valid email address.
email addresses look like the following
[email protected]
[email protected]
[email protected]
etc
Submit a html file with a form containing an email text-field, and the JavaScript code that called
to validate the text-field when the form is submitted. (so I can easily test it).
Write a JavaScript function to validate a text field on a form which is to contain an integer, eg 2,
4567, 87612 etc ... without using any built functions like IsNaN an so fourth. If the text field
contains a valid number then the JavaScript function can return "true", otherwise it returns
"false" as well as displaying a popup error message.