Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

combobox


hyjack select

Hyjack Select was designed to replace traditional html select input control (also known
as combobox or dropdownlists). Hyjack Select enchances the select by injecting a
"search like suggest" textbox which queries the select option items.

droplist

Customize select tags in forms and create dropdown menus based on lists

TimezoneComboBox

Timezone ComboBox

JQuery plugin for allowing the user to visually determine the offset of its local time (in seconds) relative to UTC.

Uses:

- jquery
- jquery.timers

Example:


js:

  $(function() {
    $('#example').timezoneComboBox();
  });

html:

  <div id='example' ></div>

Return with submit form:

timezone_offset if jQuery object contains one element; otherwise id_timezone_offset

Options:

refreshTime - refresh time, milliseconds (default: 1s)

Links:

home
wiki
example
download

Simple Combo

The simpleCombo plugin is a jQuery-based combo box widget that is

  • simple
  • lightweight
  • consistent with native widget look and feel

with simpleCombo, you can turn select lists into combo boxes like this:

$(selector).simpleCombo();

Simple combo boxes are normal select lists with one extra feature: you can type
directly into the combo box to add an extra option, which is automatically
selected.

Since these combo boxes are actually just select lists plus JavaScript, they
look exactly like regular select lists. They can be styled, resized, etc.
with no visual glitches.

easy combobox based on select-element

jquery.combobox is a plugin which takse a standard HTML select-element and turns it into a combobox-element. It is easy to install and style using CSS. No further adjustments needed to maintain the functionality of the form.

Native Combo Box

Native Combo Box

This very simple plugin is designed to mimic the look of a native combo box for your OS. Perfect for offering suggestions without forcing them.

Takes one argument: either an array of options or an existing select element.

Examples:

$('#input_a').combobox(['option 1', 'option 2', 'option 3']);
$('input.many').combobox($('#select_element'));

Warning: This looks terrible of you style it. If you aren’t using the native form controls, you should edit the CSS so that everything lines up properly.

imList

imList is a JQuery plugin that began as a way to ajaxally create html tables using JQuery. After creating the table plugin, I realized that I could apply much of the same functionality to any type of list that is displayed on a web page, to include: ul/ol, comboboxes, lists, and divs. The power of this plugin is it’s regular expression functionality that will allow developers to display anything they wish within a list. I have also built in a delete row capability that can, not only delete the row that is displayed on the web page, but also allow the developer to delete the record from the server (ajaxally, of course).

Styled combobox - standart select's replacement

What is it

Styled combobox allow you style standart combobox elements on your web page. FULL CSS customizable. Just 2kb of code!!! Try it ;)

SexyCombo

Sexy Combo is a plugin that allows you to easily turn your selectboxes into much more attractive and usable combo boxes. The difference is that the user can choose whether to type the value, select it from the dropdown list or use the mixture of both of these ways. Sexy Combo reaches its maximum efficiency when you have selectboxes with lots of options, and user can type the value more quickly rather than select it from a huge list. Sexy Combo is much more attractive than standard browser selectboxes, and (more important) it gives your users more freedom (as tagging in comparison to traditional taxonomy). Visit demo page to see how it looks, and, I am sure, you will appreciate it.

FlexBox

FlexBox Home Page
CodePlex Project Page

FlexBox is a jQuery plugin that is intended to be a very flexible replacement for html textboxes and dropdowns, optionally using ajax to retrieve and bind JSON data.

It can be used as a:

  • ComboBox, with optional per-result html templates
  • Suggest box, like Google's search
  • Data-driven type-ahead input box

It supports:

  • Auto-completion using local (JSON) or remote (JSON via ajax) data
  • Skinning via css
  • Flexible paging
  • Configurable client-side caching
  • Much more...