{"id":15570470,"url":"https://github.com/cipherboy/jform","last_synced_at":"2026-07-18T20:30:57.171Z","repository":{"id":9297652,"uuid":"11134580","full_name":"cipherboy/jForm","owner":"cipherboy","description":"A HTML5 Form library ","archived":false,"fork":false,"pushed_at":"2013-07-04T15:12:51.000Z","size":112,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-14T05:13:51.794Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cipherboy.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-07-02T20:34:18.000Z","updated_at":"2014-12-16T03:29:15.000Z","dependencies_parsed_at":"2022-09-06T00:20:40.199Z","dependency_job_id":null,"html_url":"https://github.com/cipherboy/jForm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cipherboy/jForm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cipherboy%2FjForm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cipherboy%2FjForm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cipherboy%2FjForm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cipherboy%2FjForm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cipherboy","download_url":"https://codeload.github.com/cipherboy/jForm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cipherboy%2FjForm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35630865,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-18T02:00:07.223Z","response_time":61,"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":"2024-10-02T17:42:25.554Z","updated_at":"2026-07-18T20:30:57.157Z","avatar_url":"https://github.com/cipherboy.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"jForm v1.4 - A HTML5 Form library \nDepends: jQuery v1.5+\n\nCopyright (C) 2011, 2013 Alex Scheel\nAll rights reserved.\nLicensed under BSD 2 Clause License:\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n- Redistributions of source code must retain the above copyright notice,\n  this list of conditions and the following disclaimer.\n- Redistributions in binary form must reproduce the above copyright notice, \n  this list of conditions and the following disclaimer in the documentation \n  and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n\nA HTML5 Form library \n\nUsage:\n  var form = new jForm();\n  form.init('div-jform-id', '/path/to/jform/push');\n  form.setForm([[[0, 0, 0]], [[\"Title for page\", [\"Name\", \"id-element\", \"text\", \"Description of element\"]]]);\n  form.setRControls('div-rcontrols-id', [\"next\"]);\n  form.setLControls('div-lcontrols-id', [\"next\"]);\n  form.setReturnCodes([['1', 'Missing Name', 0]]);\n  form.setSubmit('/path/on/success');\n  form.load();\n  \nAPI:\n  Main:\n    init(formid, saveuri) - Sets id of form, location to save to\n    \n    doNext() - Go to next form page\n    \n    doBack() - Go to previous form page\n    \n    saveData() - Save page's data\n    \n    submit() - Submit form\n    \n    load() - Loads form, displays\n    \n  Config:\n    setForm(form) - Sets contents of form from array\n    \n    setRControls(id, elements) - Set contents of right controls\n    \n    setLControls(id, elements) - Set contents of left controls\n    \n    setSubmit(path) - Path on success\n    \n    setReturnCodes(codes) - Array with return codes.\n    \n  Getters:\n    getRControls() - Render right controls\n    \n    getLControls() - Render left controls\n    \n    getPageTitle() - Get title of form page\n    \n    getPageDescription() - Get description of form page\n    \n    getElement(placeholder, name, type, rtype, title, dynamiccount) - render element\n    \n    getPageElements() - Get all elements\n    \n    getPage() - Get entire page\n    \n  Internal:\n    Form:\n      hideForm()\n      showForm()\n      toPage()\n      loadPage()\n      doSubmit()\n      handleSubmit()\n      doDynamic()\n      verify()\n      verifyType()\n      \n    Events:\n      eventTriggerBack(event)\n      eventTriggerDynamic(event)\n      eventTriggerNext(event)\n      bindEvents()\n      unbindEvents()\n      \n    Misc:\n      saveData()\n      fdata(event)\n      loadData()\n      htmlSafe()\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcipherboy%2Fjform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcipherboy%2Fjform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcipherboy%2Fjform/lists"}