1.1.2 • Published 3 years ago

input-notify v1.1.2

Weekly downloads
1
License
ISC
Repository
github
Last release
3 years ago

Install

npm

npm install input-notify

Basic Setup

Grab the compiled JS/CSS from the /dist directory, load them into your web page, and everything should work! Remember to load the plugin code after loading JQuery.

HTML file

<form>
  <div id='js-note'>
    <input type="text" placeholder="Name *">
  </div>
  <div id="js-note1">
    <input type="text" placeholder="Email *">
  </div>
  <div id='js-note2'>
    <textarea rows="9" placeholder="Message *"></textarea>
  </div>
  <div class="mb-4 text-right">
    <button class="c-btn" id="js-send">Send</button>
  </div>
</form>

Javascript file

$(document).ready(function() {
  $('#js-note').inputNotify('This field is required',1000);
  //Notify message: 'This field is required'. Time in miliseconds to hide after: 1000
  
  $('#js-note2').inputNotify('Please enter a valid email address',2000,{color: '#fff', background: '#ed8936'});
  // color: '#fff' Set color text for alert
  //background: '#ed8936' Set background color for alert
  
  $('#js-note1').inputNotify('Please enter a valid email address',1500,{color: '#333', background: 'yellow', icon: 'success'});
  // icon: 'success' Set icon for alert
  //'success' or 'error' or another icon you set
  
});

Features

A plugin to show customizable notifications.

1.1.2

3 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago