{"id":19568283,"url":"https://github.com/interactive-pioneers/iptools-jquery-populator","last_synced_at":"2026-04-14T18:34:10.959Z","repository":{"id":58234622,"uuid":"23426809","full_name":"interactive-pioneers/iptools-jquery-populator","owner":"interactive-pioneers","description":"jQuery plugin that populates form control value(s) to other control(s)","archived":false,"fork":false,"pushed_at":"2017-05-10T09:42:10.000Z","size":65,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":13,"default_branch":"master","last_synced_at":"2026-02-15T00:36:08.652Z","etag":null,"topics":["form","iptools-jquery-populator","javascript","jquery","jquery-plugin","population"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/interactive-pioneers.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-08-28T12:23:50.000Z","updated_at":"2020-05-24T16:44:39.000Z","dependencies_parsed_at":"2022-08-31T04:40:29.399Z","dependency_job_id":null,"html_url":"https://github.com/interactive-pioneers/iptools-jquery-populator","commit_stats":null,"previous_names":["interactive-pioneers/jquery-pbpopulator"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/interactive-pioneers/iptools-jquery-populator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interactive-pioneers%2Fiptools-jquery-populator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interactive-pioneers%2Fiptools-jquery-populator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interactive-pioneers%2Fiptools-jquery-populator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interactive-pioneers%2Fiptools-jquery-populator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/interactive-pioneers","download_url":"https://codeload.github.com/interactive-pioneers/iptools-jquery-populator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interactive-pioneers%2Fiptools-jquery-populator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31810737,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"ssl_error","status_checked_at":"2026-04-14T18:05:01.765Z","response_time":153,"last_error":"SSL_read: 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":["form","iptools-jquery-populator","javascript","jquery","jquery-plugin","population"],"created_at":"2024-11-11T06:03:13.073Z","updated_at":"2026-04-14T18:34:10.914Z","avatar_url":"https://github.com/interactive-pioneers.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# iptools-jquery-populator [![Build Status](http://img.shields.io/travis/interactive-pioneers/iptools-jquery-populator.svg)](https://travis-ci.org/interactive-pioneers/iptools-jquery-populator) [![Bower version](https://badge.fury.io/bo/iptools-jquery-populator.svg)](http://badge.fury.io/bo/iptools-jquery-populator)\n\njQuery plugin that populates form control value(s) to other control(s).\n\n## Installation\n\n```\nbower install iptools-jquery-populator\n```\n\n## Features\n\n- Populate values automatically from one form control to the other on its `change` or `blur` events based on `data-population-target` attribute\n- Populate values manually from one form control to the other with `populateManual()` method call based on `data-population-target-manual` attribute\n- Listen to population to retrieve event `type`, `source` and `target` controls of the population\n- Populate single value to multiple targets\n\n## Options\n\nAll options are delivered over data attributes on form controls which values should be populated to other control(s).\n\n| Option | Description |\n| ------ | ----------- |\n| `data-population-target` | Single or comma-separated list of selectors for form controls receiving data on `change` or `blur` events |\n| `data-population-target-manual` | Single or comma-separated list of selectors for form controls receiving data on `populateManual()` method call |\n\n## Events\n\nEvents are dispatched on element that populator was initialised on, e.g. `\u003cform\u003e`.\n\n| Event | Description |\n| ------ | ----------- |\n| `success` | Dispatched whenever value was populated successfully. |\n| `error` | Dispatched whenever values was popuplated erroneously. |\n\nEvent structure:\n\n```js\n{\n  type: '\u003cevent type\u003e', // populationMismatch or populationSuccess\n  target: '\u003cjQuery Object\u003e', // target element receiving populated value\n  source: '\u003cjQuery Object\u003e', // source element defining populated\n}\n```\n\n## Requirements\n\n- jQuery 1.3.2 or greater\n\n## Example\n\n```html\n\u003cform action=\"/billing\" method=\"post\"\u003e\n  \u003cinput type=\"text\" data-population-target=\"#js_shipping_name\" name=\"billing_name\" value=\"Interactive Pioneers GmbH\"\u003e\n\u003c/form\u003e\n\n\u003cform action=\"/shipping\" method=\"post\"\u003e\n  \u003cinput type=\"text\" name=\"shipping_name\" id=\"js_shipping_name\"\u003e\n\u003c/form\u003e\n\n\u003cscript\u003e\njQuery(document).ready(function($) {\n  $('form:first').iptPopulator();\n});\n\u003c/script\u003e\n```\n\n## Contributions\n\n### Bug reports, suggestions\n\n- File all your issues, feature requests [here](https://github.com/interactive-pioneers/iptools-jquery-populator/issues)\n- If filing a bug report, follow the convention of _Steps to reproduce_ / _What happens?_ / _What should happen?_\n- __If you're a developer, write a failing test instead of a bug report__ and send a Pull Request\n\n### Code\n\n1. Fork it ( https://github.com/[my-github-username]/iptools-jquery-populator/fork )\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Develop your feature by concepts of [TDD](http://en.wikipedia.org/wiki/Test-driven_development), see [Tips](#tips)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create a new Pull Request\n\n### Tips\n\nFollowing tasks are there to help with development:\n\n- `grunt watch:bdd` listens to tests and source, reruns tests\n- `grunt qa` run QA task that includes tests and JSHint\n- `grunt build` minify source to dist/\n\n## Licence\nCopyright © 2015 Interactive Pioneers GmbH. Licenced under [GPLv3](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finteractive-pioneers%2Fiptools-jquery-populator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finteractive-pioneers%2Fiptools-jquery-populator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finteractive-pioneers%2Fiptools-jquery-populator/lists"}