Giter VIP home page Giter VIP logo

my-select's Introduction

my-select

Create your custom select.

How it works

This plugin use class pattern for manage each select as a singleton. The plugin create 2 div in the container you specified during the instantiation. The first one is the label who contains the selected value and the last one hold all the values.

Installation

You can use the minified file in lib/select.js for production or if you use Browserify, you just have to require('my-select') and npm i

Setup

Simply create a new instance of the Select object with 2 mandatory arguments :

  • select : selector of the select you want to fake
  • container : selector of the container who the fakeselect will be append
var Select = require('my-select');

document.addEventListener('DOMContentLoaded', function () {
  new Select({
    select: '#custom',
    container: '.someWhereToAppend'
  });
}, false);

Obviously, each time you click on a list item, the select binded will have his selected value changed.

Events

You can add a change event who will be triggered each time the value change. You need to pass a callback with the selected value as arguments.

Ex:

var custom = new Select({
  select: '#custom',
  container: '.someWhereToAppend'
});

custom.on('change', function(selectedValue) {
  console.log(selectedValue);
});

What about device ?

By default, when the user will click on your fake select it will trigger the native select for a better UX. If you don't want this behavior you can disabled him in the constructor :

var selects = new Select({
  nativeOnDevice: false
});

Support

This module uses classList who isn't available on IE9 and below, so if you need the polyfill, you can use classList.js at the top of your file.

my-select's People

Watchers

James Cloos 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.