Git Product home page Git Product logo

completer's Introduction

A jQuery auto complete plugin.

Getting started

Installation

Include files:

<script src="/path/to/jquery.js"></script><!-- jQuery is required -->
<link rel="stylesheet" href="/path/to/completer.css">
<script src="/path/to/completer.js"></script>

Usage

Initialize with $.fn.completer method.

<input class="completer" type="email">
$(".completer").completer({
    source: ["gmail.com", "yahoo.com", "hotmail.com", "outlook.com", "live.com", "aol.com"],
    separator: "@"
});

Options

Setup with $("#target").completer(options), or global setup with $.fn.completer.setDefaults(options).

complete

  • type: function
  • default: function() {}

Will be run when complete.

itemTag

  • type: string
  • default: "li"

The element tag of list item.

filter

  • type: function
  • default: function(val) { return val; }

The function will be passed the input value and run before show the list.

position

  • type: string
  • options: "top", "right", "bottom", "left"
  • default: "bottom"

The position of the container.

source

  • type: array
  • default: []

The source data for complete or suggest.

selectedClass

  • type: string
  • default: "completer-selected"

A jQuery selector string, highlight the item when it's selected.

separator

  • type: string
  • default: ""

This will be added between the value and attachment.

suggest

  • type: boolean
  • default: false

Set it "true" to start the suggestion mode.

template

  • type: string
  • default: "<ul class="completer-container">
"

The container of the completer.

zIndex

  • type: number
  • default: 1

The css "z-index" property for the container.

completer's People

Watchers

 avatar

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.