{"id":13596393,"url":"https://github.com/crlcu/multiselect","last_synced_at":"2025-10-22T12:50:44.726Z","repository":{"id":7569069,"uuid":"8923297","full_name":"crlcu/multiselect","owner":"crlcu","description":"jQuery multiselect plugin with two sides. The user can select one or more items and send them to the other side.","archived":false,"fork":false,"pushed_at":"2024-04-19T17:48:21.000Z","size":1797,"stargazers_count":310,"open_issues_count":27,"forks_count":128,"subscribers_count":20,"default_branch":"master","last_synced_at":"2025-03-14T00:05:42.460Z","etag":null,"topics":["jquery-plugin","multiselect"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/crlcu.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"crlcu"}},"created_at":"2013-03-21T07:21:37.000Z","updated_at":"2025-01-03T03:31:56.000Z","dependencies_parsed_at":"2024-06-18T15:14:37.987Z","dependency_job_id":"bd3105a5-fc90-4b92-84b2-126f01ee191e","html_url":"https://github.com/crlcu/multiselect","commit_stats":{"total_commits":196,"total_committers":31,"mean_commits":6.32258064516129,"dds":0.6785714285714286,"last_synced_commit":"deffd47a2a1c361c4fe2a68296e20ae02b1ccc77"},"previous_names":[],"tags_count":49,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crlcu%2Fmultiselect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crlcu%2Fmultiselect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crlcu%2Fmultiselect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crlcu%2Fmultiselect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crlcu","download_url":"https://codeload.github.com/crlcu/multiselect/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248067904,"owners_count":21042375,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jquery-plugin","multiselect"],"created_at":"2024-08-01T16:02:23.561Z","updated_at":"2025-10-22T12:50:39.694Z","avatar_url":"https://github.com/crlcu.png","language":"JavaScript","funding_links":["https://github.com/sponsors/crlcu"],"categories":["JavaScript"],"sub_categories":[],"readme":"multiselect\n===========\n\njQuery multiselect plugin with two sides. The user can select one or more items and send them to the other side.\n\n# [Demo](http://crlcu.github.io/multiselect/)\n\n## Requirements\n\n- jQuery 1.7 or higher\n\n## Quick start\n\nSeveral quick start options are available:\n\n- Clone the repo: `git clone https://github.com/crlcu/multiselect.git` or\n- Install with [Bower](http://bower.io): `bower install multiselect-two-sides`.\n\n### Usage example\n\n```html\n\u003cdiv class=\"row\"\u003e\n\t\u003cdiv class=\"col-xs-5\"\u003e\n\t\t\u003cselect name=\"from[]\" id=\"multiselect\" class=\"form-control\" size=\"8\" multiple=\"multiple\"\u003e\n\t\t\t\u003coption value=\"1\"\u003eItem 1\u003c/option\u003e\n\t\t\t\u003coption value=\"3\"\u003eItem 3\u003c/option\u003e\n\t\t\t\u003coption value=\"2\"\u003eItem 2\u003c/option\u003e\n\t\t\u003c/select\u003e\n\t\u003c/div\u003e\n\t\n\t\u003cdiv class=\"col-xs-2\"\u003e\n\t\t\u003cbutton type=\"button\" id=\"multiselect_rightAll\" class=\"btn btn-block\"\u003e\u003ci class=\"glyphicon glyphicon-forward\"\u003e\u003c/i\u003e\u003c/button\u003e\n\t\t\u003cbutton type=\"button\" id=\"multiselect_rightSelected\" class=\"btn btn-block\"\u003e\u003ci class=\"glyphicon glyphicon-chevron-right\"\u003e\u003c/i\u003e\u003c/button\u003e\n\t\t\u003cbutton type=\"button\" id=\"multiselect_leftSelected\" class=\"btn btn-block\"\u003e\u003ci class=\"glyphicon glyphicon-chevron-left\"\u003e\u003c/i\u003e\u003c/button\u003e\n\t\t\u003cbutton type=\"button\" id=\"multiselect_leftAll\" class=\"btn btn-block\"\u003e\u003ci class=\"glyphicon glyphicon-backward\"\u003e\u003c/i\u003e\u003c/button\u003e\n\t\u003c/div\u003e\n\t\n\t\u003cdiv class=\"col-xs-5\"\u003e\n\t\t\u003cselect name=\"to[]\" id=\"multiselect_to\" class=\"form-control\" size=\"8\" multiple=\"multiple\"\u003e\u003c/select\u003e\n\t\u003c/div\u003e\n\u003c/div\u003e\n```\n\n```javascript\n\u003cscript type=\"text/javascript\" src=\"path/to/jquery.min.js\"\u003e\u003c/script\u003e\n\u003cscript type=\"text/javascript\" src=\"path/to/multiselect.min.js\"\u003e\u003c/script\u003e\n\n\u003cscript type=\"text/javascript\"\u003e\njQuery(document).ready(function($) {\n\t$('#multiselect').multiselect();\n});\n\u003c/script\u003e\n```\n\n## Bugs and feature requests\n\nIf your problem or idea is not [addressed](https://github.com/crlcu/multiselect/issues) yet, [please open a new issue](https://github.com/crlcu/multiselect/issues/new).\n\n## Versioning\n\nFor transparency into release cycle and in striving to maintain backward compatibility, multiselect is maintained under [the Semantic Versioning guidelines](http://semver.org/).\n\n\n## License\n\nThe multiselect plugin is open-sourced software licensed under the [the MIT license](https://github.com/crlcu/multiselect/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrlcu%2Fmultiselect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrlcu%2Fmultiselect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrlcu%2Fmultiselect/lists"}