{"id":30107071,"url":"https://github.com/benignware/jquery-checkview","last_synced_at":"2025-08-10T01:33:02.963Z","repository":{"id":77447833,"uuid":"13659157","full_name":"benignware/jquery-checkview","owner":"benignware","description":"This jQuery plugin enables custom css styling of checkboxes and radiobuttons.","archived":false,"fork":false,"pushed_at":"2015-07-05T20:38:16.000Z","size":336,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2023-08-12T18:37:44.263Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/benignware.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}},"created_at":"2013-10-17T19:39:55.000Z","updated_at":"2015-01-09T08:32:06.000Z","dependencies_parsed_at":"2023-02-24T06:15:45.663Z","dependency_job_id":null,"html_url":"https://github.com/benignware/jquery-checkview","commit_stats":null,"previous_names":[],"tags_count":4,"template":null,"template_full_name":null,"purl":"pkg:github/benignware/jquery-checkview","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benignware%2Fjquery-checkview","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benignware%2Fjquery-checkview/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benignware%2Fjquery-checkview/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benignware%2Fjquery-checkview/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/benignware","download_url":"https://codeload.github.com/benignware/jquery-checkview/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benignware%2Fjquery-checkview/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269663318,"owners_count":24455801,"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","status":"online","status_checked_at":"2025-08-09T02:00:10.424Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-08-10T01:32:14.762Z","updated_at":"2025-08-10T01:33:02.903Z","avatar_url":"https://github.com/benignware.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"jquery-checkview\n================\n\n\u003e This jQuery plugin enables custom css styling of checkboxes and radiobuttons.\n\nFeatures\n--------\n* Custom css styling\n* Keyboard and Tab control\n\n\n[Demo](http://benignware.github.io/jquery-checkview)\n\nUsage\n-----\n\nInclude dependencies\n\n```html\n\u003cscript src=\"http://code.jquery.com/jquery-1.11.2.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"jquery.checkview.min.js\"\u003e\u003c/script\u003e\n```\n\nProvide markup\n\n```html\n\u003clabel\u003e\u003cinput type=\"checkbox\"/\u003e Check me!\u003c/label\u003e\n```\n\nInit checkview as follows:\n\n```js\n$(\"input[type='checkbox'], input[type='radio']\").checkview();\n```\n\nSet up your css. Take a look at the example styles:\n\n```css\n.checkview {\n  background-color: #FFFFFF;\n  border: 1px solid #ACACAC;\n  line-height: 1em;\n}\n\n.checkview .icon-ok {\n  display: inline-block;\n  background: url('http://cdn.dustball.com/tick.png') no-repeat center;\n  background-size: contain;\n  width: 1em;\n  height: 1em;\n}\n```\n\n\nBootstrap Example\n-----------------\n\nInclude Bootstrap CSS:\n```html\n\u003clink href=\"http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css\" rel=\"stylesheet\"/\u003e\n```\n\nProvide Bootstrap Checkbox Markup:\n\n```html\n\u003cdiv class=\"checkbox\"\u003e\n  \u003clabel\u003e\n    \u003cinput type=\"checkbox\"\u003e Check me!\n  \u003c/label\u003e\n\u003c/div\u003e\n```\n\nConfigure checkview with Bootstrap's button and icon components:\n\n```js\n$(\".checkbox input[type='checkbox']\").checkview({\n  wrapperClass: 'btn btn-default btn-xs',\n  iconClass: 'glyphicon glyphicon-ok'\n});\n```\n\n\n\nOptions\n-------\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003cth\u003eName\u003c/th\u003e\u003cth\u003eDescription\u003c/th\u003e\u003cth\u003eDefault\u003c/th\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003echeckedClass\u003c/td\u003e\u003ctd\u003eCSS Class to indicate the checkview's state\u003c/td\u003e\u003ctd\u003echeckview\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eiconClass\u003c/td\u003e\u003ctd\u003eIcon css class\u003c/td\u003e\u003ctd\u003eicon-ok\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003epreventSubmit\u003c/td\u003e\u003ctd\u003eSpecifies whether to propagate pressing of enter key\u003c/td\u003e\u003ctd\u003efalse\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003ewrapperClass\u003c/td\u003e\u003ctd\u003eContainer css class\u003c/td\u003e\u003ctd\u003echeckview\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003ewrapperTag\u003c/td\u003e\u003ctd\u003eContainer tag name\u003c/td\u003e\u003ctd\u003espan\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\nMethods\n-------\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003cth\u003eName\u003c/th\u003e\u003cth\u003eDescription\u003c/th\u003e\u003cth\u003eReturn\u003c/th\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003egetChecked\u003c/td\u003e\u003ctd\u003eReturns the checkview's state\u003c/td\u003e\u003ctd\u003eboolean\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003einvalidate\u003c/td\u003e\u003ctd\u003eRefreshes the component\u003c/td\u003e\u003ctd\u003evoid\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003esetChecked(bool)\u003c/td\u003e\u003ctd\u003eSets the checkview's state\u003c/td\u003e\u003ctd\u003evoid\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n## Method example\nAccess plugin-instance and refresh\n\n```\n$(\"#checkview\").data('checkview').refresh();\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenignware%2Fjquery-checkview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenignware%2Fjquery-checkview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenignware%2Fjquery-checkview/lists"}