{"id":13824544,"url":"https://github.com/dknight/jQuery-Notify-bar","last_synced_at":"2025-07-08T19:32:19.933Z","repository":{"id":582128,"uuid":"215367","full_name":"dknight/jQuery-Notify-bar","owner":"dknight","description":"Twitter like notify bar","archived":true,"fork":false,"pushed_at":"2023-05-18T19:41:07.000Z","size":205,"stargazers_count":127,"open_issues_count":0,"forks_count":37,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-06-26T10:15:47.195Z","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/dknight.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2009-06-01T08:47:12.000Z","updated_at":"2024-05-12T21:08:32.000Z","dependencies_parsed_at":"2023-07-06T21:01:29.727Z","dependency_job_id":null,"html_url":"https://github.com/dknight/jQuery-Notify-bar","commit_stats":{"total_commits":54,"total_committers":5,"mean_commits":10.8,"dds":0.09259259259259256,"last_synced_commit":"beaf81bb7f31858ee808ccf8a784281cea837d53"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/dknight/jQuery-Notify-bar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dknight%2FjQuery-Notify-bar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dknight%2FjQuery-Notify-bar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dknight%2FjQuery-Notify-bar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dknight%2FjQuery-Notify-bar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dknight","download_url":"https://codeload.github.com/dknight/jQuery-Notify-bar/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dknight%2FjQuery-Notify-bar/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264334055,"owners_count":23592352,"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":[],"created_at":"2024-08-04T09:01:04.593Z","updated_at":"2025-07-08T19:32:19.656Z","avatar_url":"https://github.com/dknight.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# Please do not use jQuery in 2023\n\nRepo is archived for history.\n\nTry a [modern implementations](https://github.com/dknight/xz-notify) based on Web Components.\n\n\u003chr\u003e\n\n\n# jQuery Notify bar\n\nPlease visit [the project page](http://www.whoop.ee/posts/2013/04/05/the-resurrection-of-jquery-notify-bar.html \"the project page\") for feedback and other details.\n\nSimple plugin (basically it's not a plugin, but widget) to show notify bar (like on Twitter's webpage). It's very simple to use:\n\n## Installation\n\u003cpre\u003e\u003ccode\u003e\u0026gt; bower install jqnotifybar\u003c/code\u003e\u003c/pre\u003e\n\n## Usage\n\n\u003cpre\u003e\u003ccode\u003ejQuery(function () {\n  jQuery.notifyBar({\n    html: \"Thank you, your settings were updated!\",\n    delay: 2000,\n    animationSpeed: \"normal\"\n  })\n});\n\u003c/code\u003e\u003c/pre\u003e\n\n### Usage position at bottom\n\u003cpre\u003e\u003ccode\u003e\njQuery(function () {\n  jQuery.notifyBar({\n    html: \"Hi from below!\",\n    cssClass: \"Appear at bottom\",\n    position: \"bottom\"\n  });\n});\n\u003c/code\u003e\u003c/pre\u003e\n\n## Options\n\n\u003ctable class=\"table1\"\u003e\n  \u003ctr\u003e\n    \u003cth\u003eOption\u003c/th\u003e\n    \u003cth\u003eDescription\u003c/th\u003e\n    \u003cth\u003eType\u003c/th\u003e\n    \u003cth\u003eDefault\u003c/th\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003ehtml\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eWhat text will be inside bar. Can be HTML or just text.\u003c/td\u003e\n    \u003ctd\u003eString [optional]\u003c/td\u003e\n    \u003ctd\u003e\"Your message here\"\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003edelay\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eHow long bar will be delayed, doesn't count animation time.\u003c/td\u003e\n    \u003ctd\u003eInteger [optional]\u003c/td\u003e\n    \u003ctd\u003e2000\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003eanimationSpeed\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eHow long this bar will be slided up and down.\u003c/td\u003e\n    \u003ctd\u003eString | Integer\u003c/td\u003e\n    \u003ctd\u003e\"normal\"\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003ejqObject\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eCustom jQuery object for notify bar.\u003c/td\u003e\n    \u003ctd\u003ejQuery object [optional]\u003c/td\u003e\n    \u003ctd\u003enull\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003ecssClass\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eYou can define own CSS class for Notify bar.\n        There are too premade classes \"error\", \"warning\" and \"success\".\u003c/td\u003e\n    \u003ctd\u003eString\u003c/td\u003e\n    \u003ctd\u003e\"\"\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003eclose\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eIf set to true close button will be displayed.\u003c/td\u003e\n    \u003ctd\u003eBoolean\u003c/td\u003e\n    \u003ctd\u003efalse\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003ecloseText\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eSets the text to close button.\u003c/td\u003e\n    \u003ctd\u003eString\u003c/td\u003e\n    \u003ctd\u003e\"Close [X]\"\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003ecloseOnClick\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eIf enabled, user can hide notify bar just by click on it.\u003c/td\u003e\n    \u003ctd\u003eBoolean\u003c/td\u003e\n    \u003ctd\u003etrue\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003ecloseOnOver\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eIf enabled, user can hide notify bar just by moving mouse cursor on it (suitable for really lazy people).\u003c/td\u003e\n    \u003ctd\u003eBoolean\u003c/td\u003e\n    \u003ctd\u003efalse\u003c/td\u003e\n  \u003c/tr\u003e\n    \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003ewaitingForClose\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eIf enabled, notify bar don't close until user presses the close button.\u003c/td\u003e\n    \u003ctd\u003eBoolean\u003c/td\u003e\n    \u003ctd\u003etrue\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003eonBeforeShow\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eCallback on before show.\u003c/td\u003e\n    \u003ctd\u003efunction\u003c/td\u003e\n    \u003ctd\u003enull\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003eonShow\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eCallback on show.\u003c/td\u003e\n    \u003ctd\u003efunction\u003c/td\u003e\n    \u003ctd\u003enull\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003eonBeforeHide\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eCallback on before hide.\u003c/td\u003e\n    \u003ctd\u003efunction\u003c/td\u003e\n    \u003ctd\u003enull\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003eonHide\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eCallback on hide.\u003c/td\u003e\n    \u003ctd\u003efunction\u003c/td\u003e\n    \u003ctd\u003enull\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003eposition\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003eSet the position of notify bar. Possible values are \u003cstrong\u003etop\u003c/strong\u003e, \u003cstrong\u003ebottom\u003c/strong\u003e.\u003c/td\u003e\n    \u003ctd\u003estring\u003c/td\u003e\n    \u003ctd\u003e\"top\"\u003c/td\u003e\n  \u003c/tr\u003e\n  \n\u003c/table\u003e\n\nPlease visit [the project page](http://www.whoop.ee/posts/2013-04-05-the-resurrection-of-jquery-notify-bar/ \"the project page\") for feedback and other details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdknight%2FjQuery-Notify-bar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdknight%2FjQuery-Notify-bar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdknight%2FjQuery-Notify-bar/lists"}