{"id":27640281,"url":"https://github.com/codingjoe/select-3","last_synced_at":"2026-02-18T14:03:32.022Z","repository":{"id":285098118,"uuid":"957011693","full_name":"codingjoe/select-3","owner":"codingjoe","description":"State of the art select box replacement.","archived":false,"fork":false,"pushed_at":"2025-03-29T13:26:28.000Z","size":6,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-11T15:17:28.326Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codingjoe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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":"codingjoe","buy_me_a_coffee":"codingjoe","custom":"https://www.paypal.me/codingjoe"}},"created_at":"2025-03-29T10:45:30.000Z","updated_at":"2025-03-30T18:07:12.000Z","dependencies_parsed_at":"2025-03-29T14:38:48.243Z","dependency_job_id":null,"html_url":"https://github.com/codingjoe/select-3","commit_stats":null,"previous_names":["codingjoe/select-3"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codingjoe/select-3","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingjoe%2Fselect-3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingjoe%2Fselect-3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingjoe%2Fselect-3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingjoe%2Fselect-3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codingjoe","download_url":"https://codeload.github.com/codingjoe/select-3/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingjoe%2Fselect-3/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29581537,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T13:56:48.962Z","status":"ssl_error","status_checked_at":"2026-02-18T13:54:34.145Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2025-04-23T22:41:40.097Z","updated_at":"2026-02-18T14:03:31.991Z","avatar_url":"https://github.com/codingjoe.png","language":"JavaScript","funding_links":["https://github.com/sponsors/codingjoe","https://buymeacoffee.com/codingjoe","https://www.paypal.me/codingjoe"],"categories":[],"sub_categories":[],"readme":"# Select-3 (draft)\n\n_This project is in early development and not yet ready for production use._\n\n**Modern \u0026 lightweight select box replacement.**\n\n* Baseline 2024 compliant with all modern browsers.\n* Lightweight (less than 1KB minified and gzipped).\n* Drop in replacement for `\u003cselect\u003e` elements with full native form support.\n* Customizable Web Components without interference with native elements.\n* Fully accessible with keyboard navigation.\n\n## Installation\n\n```html\n\u003cscript type=\"module\" src=\"https://cdn.jsdelivr.net/npm/select-3@latest/dist/select-3.min.js\" crossorigin=\"anonymous\"\u003e\u003c/script\u003e\n```\n\n## Usage\n\n```html\n\u003cform\u003e\n  \u003clabel\u003e\n    Language:\n    \u003cselect-3 name=\"language\" placeholder=\"Select a language\"\u003e\n      \u003coption value=\"en\"\u003eEnglish\u003c/option\u003e\n      \u003coption value=\"es\" selected\u003eEspañol\u003c/option\u003e\n      \u003coption value=\"de\"\u003eDeutsch\u003c/option\u003e\n    \u003c/select-3\u003e\n  \u003c/label\u003e\n\u003c/form\u003e\n```\n\n### Autocomplete \u0026 Dynamic Options (AJAX)\n\n```html\n\u003cform\u003e\n  \u003clabel\u003e\n    GitHub Users\n    \u003cselect-3 name=\"gh-user\" placeholder=\"Search a GitHub user\" src=\"https://api.github.com/users?q=\"\u003e\u003c/select-3\u003e\n  \u003c/label\u003e\n\u003c/form\u003e\n```\n\n### Customization\n\n```javascript\nimport { Select3 } from 'https://cdn.jsdelivr.net/npm/select-3@latest/dist/select-3.min.js'\n\n\nclass MySelect extends Select3 {\n  constructor() {\n    super();\n    this.placeholder = 'Select a custom option';\n  }\n\n  connectedCallback() {\n    super.connectedCallback();\n    this.addEventListener('change', (e) =\u003e {\n      console.log('Selected value:', e.detail.value);\n    });\n  }\n}\ncustomElements.define('my-select', MySelect, { extends: 'select-3' });\n```\n\n```html\n\n\u003cform\u003e\n  \u003clabel\u003e\n    Custom Select\n    \u003cmy-select name=\"custom-select\" placeholder=\"Select a custom option\"\u003e\n      \u003coption value=\"1\"\u003eOption 1\u003c/option\u003e\n      \u003coption value=\"2\"\u003eOption 2\u003c/option\u003e\n      \u003coption value=\"3\"\u003eOption 3\u003c/option\u003e\n    \u003c/my-select\u003e\n  \u003c/label\u003e\n\u003c/form\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodingjoe%2Fselect-3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodingjoe%2Fselect-3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodingjoe%2Fselect-3/lists"}