UNPKG

foundation-sites-5

Version:

**This package is only for versions 5 and earlier of Foundation. As of version 6, the package has a new name: `foundation-sites`.**

20 lines (18 loc) 476 B
{{#markdown}} ```html <form data-abide="ajax" id="myform"> <div class="name-field"> <label>Your name <small>required</small> <input type="text" name="users_name" required pattern="[a-zA-Z]+"> </label> <small class="error">Name is required and must be a string.</small> </div> <button type="submit">Submit</button> </form> ``` ```javascript $('#myform').on('valid.fndtn.abide', function() { // Handle the submission of the form }); ``` {{/markdown}}