Select2 Playground

Workarea for select2 plugin for jquery.

by straeger

HTML

<link rel="stylesheet" href="http://ivaynberg.github.com/select2/select2-3.3.2/select2.css">
<script src="http://ivaynberg.github.com/select2/select2-3.3.2/select2.js"></script>
<input type="hidden" value="1,1,2">

JavaScript

var data = [{
    id: 1,
    text: "A"
}, {
    id: 2,
    text: "B"
}, {
    id: 3,
    text: "C"
}];
$('input').select2({
    width: "100%",
    multiple: true,
    data: data
});