{"id":26611544,"url":"https://github.com/ioncache/tag-handler","last_synced_at":"2025-04-10T01:07:31.991Z","repository":{"id":969254,"uuid":"763110","full_name":"ioncache/Tag-Handler","owner":"ioncache","description":"Tag Handler is a jQuery plugin used for managing tag-type metadata.","archived":false,"fork":false,"pushed_at":"2022-03-12T08:33:44.000Z","size":437,"stargazers_count":77,"open_issues_count":23,"forks_count":48,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-10T01:07:26.752Z","etag":null,"topics":["ajax","autocomplete","javascript","javascript-library","jquery-plugin","tag-handler"],"latest_commit_sha":null,"homepage":"http://ioncache.github.com/Tag-Handler","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ioncache.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"license.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2010-07-08T02:21:31.000Z","updated_at":"2023-12-01T07:07:14.000Z","dependencies_parsed_at":"2022-08-16T11:40:20.001Z","dependency_job_id":null,"html_url":"https://github.com/ioncache/Tag-Handler","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ioncache%2FTag-Handler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ioncache%2FTag-Handler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ioncache%2FTag-Handler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ioncache%2FTag-Handler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ioncache","download_url":"https://codeload.github.com/ioncache/Tag-Handler/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248137888,"owners_count":21053775,"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":["ajax","autocomplete","javascript","javascript-library","jquery-plugin","tag-handler"],"created_at":"2025-03-24T02:49:12.370Z","updated_at":"2025-04-10T01:07:31.971Z","avatar_url":"https://github.com/ioncache.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"jQuery Tag Handler v1.3.1\nCopyright (C) 2010-2011 Mark Jubenville\nMark Jubenville - ioncache@gmail.com\nhttp://ioncache.github.com/Tag-Handler\n    \nDevelopment time supported by:\nRaybec Communications\nhttp://www.raybec.com\nhttp://www.mysaleslink.com\n    \nModified by Javier Fernandez Escribano - fesjav@gmail.com\nAdded autocomplete queries as the user writes\n    \nDevelopment time supported by:\nTourist Eye\nhttp://www.touristeye.com\n    \nBased heavily on:\nTag it! by Levy Carneiro Jr (http://levycarneiro.com/)\nhttp://levycarneiro.com/projects/tag-it/example.html\nhttp://github.com/levycarneiro/tag-it\nhttp://plugins.jquery.com/project/tag-it\n    \nTag icons/cursors converted from:\nFrom the famfamfam.com Silk icon set:\nhttp://www.famfamfam.com/lab/icons/silk/\n    \nLoader image created at:\nPreloaders.net\nhttp://preloaders.net/\n    \n------------------------------------------------------------------------------\nDescription \n------------------------------------------------------------------------------\n    \nTag Handler is a jQuery plugin used for managing tag-type metadata. \n    \n------------------------------------------------------------------------------\nBasic Usage Instructions\n------------------------------------------------------------------------------\n    \n* Tag Handler must be attached to one or more \u003cul\u003e tags in your HTML.\n    \n* To add a tag, click on the tag box, type in a name, and hit enter or comma.\n    \n* Tags may be removed from the tag box by hitting backspace inside the box or\nby clicking on the tag.\n    \n* The list of tags may be initialized in 1 of 3 ways:\n    \n  1. By passing arrays of tag names as options to the plugin\n(\"availableTags\" and \"assignedTags\"); or,\n    \n  2. By supplying a \"getURL\" for the tags to be retrieved via AJAX.\n    \n     When using this method, the server must supply a JSON formatted array\nnamed \"availableTags\" and optionally an additional array named\n\"assignedTags\".\n\n  3. By supplying a \"getURL\" and initLoad: false.\n    \n     When using this method, it will get the \"assignedTags\" from the array as in \nmethod 1. When the user writes a tag, it will query the server searching for\nsimilar tags.        \n\nEither way, the information from these 3 methods will be used in the\nfollowing manner:\n    \navailableTags: each item in this array will populate the autocomplete\ndrop-down list\n    \nassignedTags: each item this array will become a tag in the tag box\n    \n* Tags may be sent back to the server by supplying an \"updateURL\". In this case,\nan array will be sent back to the server named \"tags\".\n    \n* You can define whether the user can create new tags or select tags only.\n    \n* You can define if the user can edit the tags.\n    \n* A sample CSS file is included that can be used to help with formatting tags.\n    \n------------------------------------------------------------------------------\nPlugin Examples\n------------------------------------------------------------------------------\n    \nExample 1: The Tag Handler will be initialized with no options and no default\ntags:\n    \n```javascript\n$(\"#basic_tag_handler\").tagHandler();\n```\n    \nExample 2: The Tag Handler will be initialized with preset tags from the\nassignedTags and availableTags arrays, and autocomplete witll be\nturned on:\n    \n```javascript\n$(\"#array_tag_handler\").tagHandler({\n    assignedTags: [ 'Perl' ],\n    availableTags: [ 'C', 'C++', 'C#', 'Java', 'Perl', 'PHP', 'Python' ],\n    autocomplete: true\n});\n```\n    \nSee https://ioncache.github.io/Tag-Handler/ for more examples\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fioncache%2Ftag-handler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fioncache%2Ftag-handler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fioncache%2Ftag-handler/lists"}