1.0.0 • Published 7 years ago

sioweb-select v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

jquery.select.js

Replaces select inputs with a dropdown list

How to use

HTML

<select name="xy" id="xy" size="1">...</select>

Script

$(function() {
  $('select').select();
});

If the list went out of the container and isnt visible because its overflow:hidden, you can add the parent container as option:

$(function() {
  $('select').select({
    container: '#parentContainer'
  });
});