1.0.9 • Published 6 years ago

required-labels v1.0.9

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

Note

This plugin is build over jQuery you need to add jQuery to your app before calling the script

Install

Using Yarn yarn add required-labels

Using NPM npm install required-labels --save

Usage

  • To use it with npm require('required-labels')

  • Then call the function requiredLabels(selector)

  • Add the styles @import "~required-labels/dist/css/app.css";

Examples

HTML markup as default

<div class="form-group">
  <label for="firstName">First name</label>
  <input id="firstName" class="form-control" type="text" placeholder="First name" required />
</div>

JQuery function Call

require('required-labels')

$(document).ready(function () {
    $('#form').requiredLabels()
  })
  

If You want to pass an option

$(document).ready(function () {
    $('#form').requiredLabels({
    createLabel: true //default is set to false 
    })
  })

Add this code to your css file

@import "~required-labels/dist/css/app.css";

####Options createLabel: false This option is used if you have an input without label and you want to create a label for that required input you set the option to true

Before

<div class="form-group">
<input id="email" type="email" placeholder="email" required />
</div> 

After

<div class="form-group">
<label for="email">email*</label>
<input id="email" type="email" placeholder="email" required />
</div> 
1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago