2.0.4 • Published 8 years ago

jquery-selectskin v2.0.4

Weekly downloads
6
License
-
Repository
github
Last release
8 years ago

jQuery SelectSkin

A basic html select element replacement.

About the 2.0 release

  • API with some useful methods
  • Compatibility with jQuery 1.9+
  • Required jQuery 1.7+

Demo

http://carlosrberto.github.com/jquery-selectskin/

Usage

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

Download

All ready-to-use files are located in the dist/ directory.

API

Some useful methods:

MethodUsageDescription
update$('select').SelectSkin('update')Update SelectSkin text, useful in cases where the content of the select element is changed without using the SelectSkin API.
empty$('select').SelectSkin('empty')Empty the select element.
append$('select').SelectSkin('append', html)Append new elements to select element, html must be a string, an option element or a jquery object.
prepend$('select').SelectSkin('prepend', html)Prepend new elements to select element, html must be a string, an option element or a jquery object.
reset$('select').SelectSkin('reset')Reset the select element, show the first option element as selected.
destroy$('select').SelectSkin('destroy')Destroy all SelectSkin references, events and elements.