All Projects → nuintun → mailtip

nuintun / mailtip

Licence: MIT License
A jquery email autocomplete plugin

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Mailtip

A jquery email autocomplete plugin

Required

jQuery >= 1.7

Introduction

$(function (){
  var info = $('.info');
  
  $('#mailtip').mailtip({
    onselected: function (mail){
      info.text('you choosed email: ' + mail)
    }
  });
});

API

options
  • mails

The email domain list

  • width

The pupup tip's width, if set input the tip's width will equal input width else the width will equal set or auto

  • onselected

The callback on selected a email

  • offsetTop

The offset top relative default position

  • offsetLeft

The offset left relative default position

  • zIndex

z-index of popup tip

Live Demo

Click here see the live demo

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].