4

How to validate email input field without form? I have tried with below code but not working.

<input class="input-text" 
       type="email" 
       data-validate="{required:true, 'validate-email':true}"   
       id="email" 
       type="text"
       placeholder="Enter email address" name="email"/>
4
  • Why would you have an input field without a form? Commented Apr 14, 2016 at 7:57
  • Because it is form inside form. i can't placed form there because we can't nest forms within another form. Commented Apr 14, 2016 at 8:43
  • So it is part of a form then? I don't understand. Commented Apr 14, 2016 at 8:50
  • I have one text field on product view page i want to send it to my custom module action.Field validation is not working. Commented Apr 14, 2016 at 8:53

1 Answer 1

1

Use the below code in js to check field validation

$("#email").valid();

It will return true if is a valid field otherwise it will return false.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.