Code Monkey home page Code Monkey logo

bootstrap-validate's Introduction

Not maintained!

I don't work for the company this library was developed for. Also, it lacks some major features like possible ajax integrations and flexibility.

I advise you to use other Software, e.g. the excellent https://github.com/jquery-validation/jquery-validation

bootstrap-validate

A simple Form Validation Utility for Bootstrap 3 and 4 which does not depend on jQuery.

Demo

Supported Versions

  • v2: Bootstrap 4
  • v1: Bootstrap 3

Documentation

Read the Documentation at bootstrap-validate.js.org which resides below docs.

Usage

  1. Include the bootstrap-validate.js script:
<script src="bootstrap-validate.js"></script>
  1. Setup Validation for your Input Elements:

Imagine the following HTML:

<div class="form-group">
    <label class="control-label">Enter a Name</label>
    <input id="name">
</div>

Now you want a Name to be at max 30 characters long and add the following:

bootstrapValidate('#name', 'max:30:Your name must not be longer than 30 characters');

Validating an email address couldn't be easier!

<div class="form-group">
  <label for="email" class="control-label">Enter your E-Mail</label>
  <div class="input" id="email">
</div>

<script>
bootstrapValidate('#email', 'email:Enter a valid email address');
</script>

Download

You can find current and previous Downloads in our Download Archive.

Changelog

See CHANGELOG.

Tests

Tests are located under __tests__/. After installing all dependencies you may run yarn test or npm run test to spin up Jest-powered tests.

License

Licensed under the MIT License, see LICENSE.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.