{"id":24143116,"url":"https://github.com/tvrtkom/jqtipnav","last_synced_at":"2025-09-19T11:31:41.490Z","repository":{"id":139656401,"uuid":"46754561","full_name":"TvrtkoM/jQTipnav","owner":"TvrtkoM","description":"A jQuery plugin which enables showing small navigation bars on interaction with action element.","archived":false,"fork":false,"pushed_at":"2016-02-04T19:01:12.000Z","size":303,"stargazers_count":28,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-02T13:11:15.301Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://tvrtkom.github.io/jQTipnav/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TvrtkoM.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2015-11-23T23:30:49.000Z","updated_at":"2023-12-20T20:40:26.000Z","dependencies_parsed_at":"2023-04-27T05:02:08.165Z","dependency_job_id":null,"html_url":"https://github.com/TvrtkoM/jQTipnav","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/TvrtkoM/jQTipnav","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TvrtkoM%2FjQTipnav","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TvrtkoM%2FjQTipnav/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TvrtkoM%2FjQTipnav/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TvrtkoM%2FjQTipnav/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TvrtkoM","download_url":"https://codeload.github.com/TvrtkoM/jQTipnav/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TvrtkoM%2FjQTipnav/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275927915,"owners_count":25554292,"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","status":"online","status_checked_at":"2025-09-19T02:00:09.700Z","response_time":108,"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":"2025-01-12T05:14:38.160Z","updated_at":"2025-09-19T11:31:41.195Z","avatar_url":"https://github.com/TvrtkoM.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [jQTipnav](http://tvrtkom.github.io/jQTipnav)\n\n## what is this?\n\n\u003e A jQuery plugin which enables showing small navigation bars on interaction with action element.\n\n## usage\n\nWrite your HTML:\n\n    \u003c!-- inside head tag --\u003e\n    \u003clink rel=\"stylesheet\" type=\"text/css\" href=\"[...]/jqtipnav.min.css\"\u003e\n    \n    \u003cul id=\"subnav\"\u003e\n      \u003cli\u003e\u003ca href=\"\"\u003eApples\u003c/a\u003e |\u003c/li\u003e\n      \u003cli\u003e\u003ca href=\"\"\u003eOranges\u003c/a\u003e |\u003c/li\u003e\n      \u003cli\u003e\u003ca href=\"\"\u003ePinepples\u003c/a\u003e\u003c/li\u003e\n    \u003c/ul\u003e\n    \u003c!-- ... --\u003e\n    \u003ca href=\"...\"\u003eHover over!\u003c/a\u003e\n    \n    \u003c!-- before closing body tag --\u003e\n    \u003cscript src=\"[...]/jquery.js\"\u003e\u003c/script\u003e\n    \u003cscript src=\"[...]/build/jqtipnav.min.js\"\u003e\u003c/script\u003e\n\nInitialize the plugin with:\n\n    $('#subnav').tipnav(options);\n\nwhere options is an object containing at least *action_element* property.\nIf multiple navigation lists are matched inside jquery selector, plugin will show additional arrows for navigation.\nClicking on arrow will show you next/previous navigation list.\n\n## options\n\n* action_element - jQuery selector object (required)\n* fade_time - set fade-out time in ms\n* trigger_event - set to 'click' to trigger showing and hiding tipnav on mouse click instead hovering\n\n## clean method\n\nPlugin can be called with string 'clean' as first argument. In this case it will try to revert back to state before plugin is initialized,\nremoving all created html elements.\n\ne.g\n\n    $(document).tipnav('clean') // removes all jqtipnav elements from page and shows hidden ones\n    $('#subnav').tipnav('clean') // removes all jqtipnv elements but only for matched element (#subnav)\n\n## contributing\n\nHave some ideas to make this plugin work better or want to add a feature? Following commands and grunt tasks will get you going:\n\n* npm install - install npm development dependencies\n* grunt build - run build-dep task, compile es2015 code, copy minified js and css files to *build* directory\n* grunt build-dep - build and copy dependencies\n* grunt build-bin - compile es2015 code and copy it minified to *build* directory\n* grunt babel - compile es2015 code to es5 inside *js-compiled* directory\n* grunt karma - run tests\n* grunt watch - auto compile and test code when files change\n\nAfter running *grunt build*, example/example.html can be used to see plugin in action.\nTest cases in spec.js are done by using Jasmine. If contributing please write test cases for your additions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftvrtkom%2Fjqtipnav","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftvrtkom%2Fjqtipnav","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftvrtkom%2Fjqtipnav/lists"}