• This repository has been archived on 07/Dec/2021
  • Stars
    star
    311
  • Rank 131,512 (Top 3 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created almost 8 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A lightweight, vanilla javascript select box replacement. No dependencies.

Selectr

npm npm version license Average time to resolve an issue Percentage of issues still open

NO LONGER UNDER ACTIVE DEVELOPMENT. If you would like to take over development please contact me and I'll transfer ownership.

A lightweight, dependency-free, mobile-friendly select box replacement written in vanilla javascript. Just 6.5KB minified and gzipped. Similar to Select2 and Chosen, but without the dependencies.

Supports most modern mobile and desktop browsers including IE9.

Don't forget to check the wiki out and view some demos.

Pull requests accepted!


Features:

  • Supports single and multiple select boxes
  • Supports optgroups
  • Custom datasets
  • Searchable options
  • Tagging support
  • Custom events
  • Custom styling
  • Native select UI for mobile devices
  • Dynamically add options
  • Much more...

Documentation | Demo


Install

bower

bower install mobius1-selectr --save

npm

npm install mobius1-selectr --save

Browser

Grab the files from one of the CDNs and include them in your page:

<link href="https://unpkg.com/mobius1-selectr@latest/dist/selectr.min.css" rel="stylesheet" type="text/css">
<script src="https://unpkg.com/mobius1-selectr@latest/dist/selectr.min.js" type="text/javascript"></script>

//or

<link href="https://cdn.jsdelivr.net/gh/mobius1/selectr@latest/dist/selectr.min.css" rel="stylesheet" type="text/css">
<script src="https://cdn.jsdelivr.net/gh/mobius1/selectr@latest/dist/selectr.min.js" type="text/javascript"></script>

You can replace latest with the required release number if needed.

CDNs courtesy of unpkg and jsDelivr


Initialisation

HTML

Start with a standard select box you want to convert:

<select id="mySelect">
	<option value="value-1">Value 1</option>
	<option value="value-2">Value 2</option>
	<option value="value-3">Value 3</option>
	...
</select>

Javascript

You can then instantiate Selectr by passing a reference to your select box as the first parameter as either a DOM node or a CSS3 selector string:

new Selectr(document.getElementById('mySelect'));

// or

new Selectr('#mySelect');

Selectr accepts the options object as a second parameter:

new Selectr('#mySelect', {
	searchable: false,
	width: 300
});

Contributors


If this project helps you then you can grab me a coffee or beer to say thanks.

paypal


License

Copyright 2016 Karl Saunders

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

Pageable

Create full page scrolling web pages. No jQuery.
JavaScript
368
star
2

Vanilla-DataTables

A lightweight, dependency-free javascript HTML table plugin
JavaScript
365
star
3

Selectable

Touch enabled selectable plugin inspired by the jQuery UI widget.
JavaScript
142
star
4

xperience

XP Ranking System for FiveM
Lua
66
star
5

rprogress

Customisable radial progress bars for FiveM
JavaScript
65
star
6

MiniBar

A lightweight scrollbar library written in vanilla javascript.
JavaScript
58
star
7

bulletin

Customisable notifications for FiveM
Lua
52
star
8

esx_xp

XP Ranking System for FiveM
Lua
44
star
9

vPrompt

3D Interactive Prompts for FiveM
Lua
35
star
10

ms-spycams

Deployable spy cameras for QBCore
Lua
26
star
11

Rangeable

Transform input range elements into something prettier and more configurable.
JavaScript
18
star
12

Editable

A table editor extension for Vanilla-DataTables.
JavaScript
16
star
13

esx_forklift

ESX forklift job for FiveM
Lua
14
star
14

FeedM

Customisable native feed notifications for FiveM
Lua
13
star
15

vInspector

Vehicle inspector for FiveM
Lua
12
star
16

esx_collectables

Collectable items for FiveM
Lua
11
star
17

NestableJS

JS library for drag & drop hierarchical lists
JavaScript
11
star
18

Exportable

A Vanilla-DataTables extension to allow for exporting table data to various formats.
JavaScript
7
star
19

Selectable-Table-Plugin

Plugin for Mobius1/Selectable that enables fast column / row selection.
JavaScript
7
star
20

AnimateUI

Animated UI Messages for FiveM
Lua
6
star
21

MetroCQL

MetroCQL - Metro Conquest Large
Lua
3
star
22

XpM

Framework agnostic XP ranking system for FiveM
Lua
3
star
23

GForceM

Vehicle G-Force meter for FiveM
Lua
3
star
24

Filterable

Vanilla-DataTables extension that adds inputs to each column for filtering.
JavaScript
2
star
25

VXCR

Virtual Xbox CD Ripper. Transfer audio files to your Xbox without having to rip from a CD.
Visual Basic
2
star
26

collectathon

Collectable items for FiveM
Lua
1
star