New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

anchor-js

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

anchor-js

A tiny javscript utility for adding anchor links to existing page content.

  • 0.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.2K
decreased by-19.82%
Maintainers
1
Weekly downloads
 
Created
Source

AnchorJS Build Status devDependency Status

AnchorJS logo

A tiny JavaScript utility for adding deep anchor links (like these) to existing page content.

Anchoring links

By default, AnchorJS displays a link icon appended to an element which is made visible on hover.

See the demo for an example.

Deep links are useful for linking to specific places in online books and documentation (like, for example, this README file when rendered on the Github project page--hover over headings to see what I mean).

Installation

Download AnchorJS via npm:

npm install anchor-js

or alternatively via bower:

bower install anchor-js --save-dev

Including AnchorJS

Include the anchor.js file (or alternatively anchor.min.js) in your webpage.

<script src="anchor.js"></script>

For the default anchor link styling (demonstrated in the demo) you should also include anchor.css.

<link rel="stylesheet" href="anchor.css">

Alternatively, you can provide your own styling.

Using AnchorJS

AnchorJS provides the addAnchors() method for adding anchors to the page. This method accepts a selector as a parameter in the form of a string. The selector can be used to target specific elements that you want to add anchors to. Here's an example.

/**
 * Example 1
 * Add anchors to all h1's on the page
 */
addAnchors('h1');

/**
 * Example 2
 * Adds anchors to elements that have been assigned the class '.anchored'
 */
addAnchors('.anchored');

/**
 * Example 3
 * Adds anchors to all h1, h2, & h3's inside a container with an ID of '#post'
 */
addAnchors('#post h1, #post h2, #post h3');

/**
 * Example 4
 * If no selector is provided, it falls back to a default selector of 'h1, h2, h3, h4, h5, h6'
 * which adds anchors to all headings.
 */
addAnchors();

Compatibility

Currently Supports: IE9+ and modern browsers

License

Licensed with the MIT License.

FAQs

Package last updated on 10 Feb 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc