Can't attach to unregistered anchor with id list
See original GitHub issueI am following the steps writed in the page
- Add <tour-step-template></tour-step-template> to your root app component
- Define anchor points for the tour steps by adding the tourAnchor directive throughout your app.
<div tourAnchor="some.anchor.id">...</div> - Define your tour steps using tourService.initialize(steps)
this.tourService.initialize([{
anchorId: 'some.anchor.id',
content: 'Some content',
title: 'First',
}, {
anchorId: 'another.anchor.id',
content: 'Other content',
title: 'Second',
}]);
- Start the tour with
tourService.start() - Check out the demo source code for an example.
Why i get the error Can’t attach to unregistered anchor with id myId
Issue Analytics
- State:
- Created 6 years ago
- Comments:5
Top Results From Across the Web
javascript - Strange website behaviour - if anchor ID exists on ...
Trying to navigate to any of the other anchor links, which each lead to a different page, doesn't work if the ID (...
Read more >Interface IXRInteractor | XR Interaction Toolkit | 2.0.4
An interface that represents an Interactor component that controls how a GameObject interacts with an Interactable component.
Read more >doc/bdev.html - spdk/spdk.github.io - Gitiles - Code Review
<div class="collapse navbar-collapse" id="navbarSupportedContent"> ... A complete list of available RPC commands with detailed information can be found on ...
Read more >RecyclerView.Adapter - Android Developers
Called by the RecyclerView if a ViewHolder created by this Adapter cannot be recycled ... Consider using id resources to uniquely identify item...
Read more >Implement 9800 Wireless LAN Controller Licenses: FAQs
In this case, simply connect both controllers to the smart licensing servers. ... Cisco bug ID CSCvt27421 - 9800 - 17.1 - Cannot...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This one worked for me Change in your component.ts file:
import { TourService } from "ngx-tour-core";toimport { TourService } from "ngx-tour-md-menu";check this out!Solved my issue by referring to #65 👍 😃
#76 helped as well