{"id":13519519,"url":"https://github.com/stevenbenner/jquery-powertip","last_synced_at":"2025-05-15T10:01:56.428Z","repository":{"id":3858638,"uuid":"4943610","full_name":"stevenbenner/jquery-powertip","owner":"stevenbenner","description":" :speech_balloon: A jQuery plugin that creates hover tooltips.","archived":false,"fork":false,"pushed_at":"2024-02-24T04:10:12.000Z","size":1074,"stargazers_count":818,"open_issues_count":37,"forks_count":138,"subscribers_count":44,"default_branch":"master","last_synced_at":"2025-05-14T15:15:35.878Z","etag":null,"topics":["javascript","jquery","jquery-plugin","tooltips"],"latest_commit_sha":null,"homepage":"https://stevenbenner.github.io/jquery-powertip/","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/stevenbenner.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.yml","contributing":null,"funding":null,"license":"LICENSE.txt","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}},"created_at":"2012-07-08T04:19:40.000Z","updated_at":"2025-05-06T15:44:06.000Z","dependencies_parsed_at":"2024-02-23T05:21:21.688Z","dependency_job_id":"d22a05d1-ca5b-4937-af70-3b2c4771a780","html_url":"https://github.com/stevenbenner/jquery-powertip","commit_stats":{"total_commits":993,"total_committers":17,"mean_commits":"58.411764705882355","dds":0.05840886203423967,"last_synced_commit":"603835ba85431a7f02f653fecbf7c4ab7021e856"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevenbenner%2Fjquery-powertip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevenbenner%2Fjquery-powertip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevenbenner%2Fjquery-powertip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevenbenner%2Fjquery-powertip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stevenbenner","download_url":"https://codeload.github.com/stevenbenner/jquery-powertip/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254319717,"owners_count":22051072,"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":["javascript","jquery","jquery-plugin","tooltips"],"created_at":"2024-08-01T05:02:00.026Z","updated_at":"2025-05-15T10:01:55.821Z","avatar_url":"https://github.com/stevenbenner.png","language":"JavaScript","readme":"# PowerTip\n\nPowerTip is a jQuery tooltip plugin with some advanced features like **hover intent testing**, **tooltip queueing**, and **support for complex data**.\n\nThis software is licensed under the [MIT license][license].\n\n[![Release Version][releasebadge]][releases] [![NPM Version][npmbadge]][npmpage] [![Test Status][testbadge]][teststatus]\n\n[license]: LICENSE.txt\n[releases]: https://github.com/stevenbenner/jquery-powertip/releases\n[teststatus]: https://github.com/stevenbenner/jquery-powertip/actions/workflows/run-tests.yml\n[releasebadge]: https://img.shields.io/github/release/stevenbenner/jquery-powertip.svg?style=flat-square\n[npmbadge]: https://img.shields.io/npm/v/jquery-powertip.svg?style=flat-square\n[testbadge]: https://img.shields.io/github/actions/workflow/status/stevenbenner/jquery-powertip/run-tests.yml?style=flat-square\n\n## Getting Started\n\n* Download the latest stable release from the [PowerTip web site][projectpage] or install [jquery-powertip][npmpage] from npm.\n* Add the JavaScript and CSS file references to your web site.\n* Add a title or data-powertip attribute to the elements you want to show tooltips for.\n* Run the `powerTip()` method on those elements.\n\n[npmpage]: https://www.npmjs.com/package/jquery-powertip\n\n## Documentation\n\nYou can find the documentation for the **latest release version** on the [PowerTip web site][projectpage]. You will find the documentation for the **latest in-development version** in the [doc folder][docs] in the GitHub repository.\n\n[projectpage]: https://stevenbenner.github.io/jquery-powertip/\n[docs]: https://github.com/stevenbenner/jquery-powertip/tree/master/doc\n\n## Reporting Bugs\n\nFor bug reports, questions, feature requests, or other suggestions the best way to contact me is to [create an issue][newissue] on GitHub.\n\n[newissue]: https://github.com/stevenbenner/jquery-powertip/issues/new\n\n## Contributor Guide\n\nMake PowerTip better! Join the [league of awesome][contributors] today by submitting a patch! The best way to submit patches is to [fork this project][fork] on GitHub and submit a pull request. But if you are unwilling or unable to use GitHub I will accept patches in any way you can get them to me (JSFiddle, pastebin, text file, whatever).\n\n[contributors]: https://github.com/stevenbenner/jquery-powertip/graphs/contributors\n[fork]: https://github.com/stevenbenner/jquery-powertip/fork\n\n### Style Guide\n\nThese are general guidelines, not rules. I won't refuse a pull request just because it isn't the style that I use.\n\n* Style guide: In general, follow the [Google JavaScript Style Guide][styleguide].\n* Line wrap: Soft-wrap at 80 characters (go further if wrapping makes code less readable).\n* Indentation: Use tabs for indentation.\n* JSDoc comments: Use [closure compiler annotations][jsdoc].\n* Method chaining: Avoid long chained method statements, two or three max.\n\n[styleguide]: https://google.github.io/styleguide/javascriptguide.xml\n[jsdoc]: https://github.com/google/closure-compiler/wiki/Annotating-JavaScript-for-the-Closure-Compiler\n","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstevenbenner%2Fjquery-powertip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstevenbenner%2Fjquery-powertip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstevenbenner%2Fjquery-powertip/lists"}