DEV Community

Cover image for Solving the “Failed to execute ‘removeChild’ on ‘Node'” error on modern SharePoint pages
Hugo Bernier
Hugo Bernier

Posted on • Originally published at tahoeninjas.blog on

Solving the “Failed to execute ‘removeChild’ on ‘Node'” error on modern SharePoint pages

(Or "SharePoint ignores target attributes on hyperlinks")

Introduction

I was recently working on a custom meganav SPFx solution for a client who reported that one of the links in the navigation would always produce the following error:

NotFoundError: Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.
in t in div in div in t in CustomizedPageLayoutScrollRegion in div in article in t in t in o in t in t in t in t in t in section in div in div in t in Styledt in t in o in t in t in t
Enter fullscreen mode Exit fullscreen mode

I immediately assumed that one of the many application extensions on the page were causing the issue.

Since the target of that link was a modern page, I assumed that there was something different on that page that would cause the issue.

But after removing all custom extensions on the site collection where that page resided, removing all custom web parts, and even starting with a blank modern page, I still got the error.

I eventually solved the issue, but it was a frustrating process.

In this post, I'll explain how I solved the issue.

I hope it will save you from having to search like I did.

data-interception="off"

When you navigate between SharePoint modern pages, there is usually a lot of stuff that is repeated on each page; stuff like navigation, suite bar, headers, footers, etc.

In fact, for most pages, the only thing that changes is the content area. It does not make sense for SharePoint to re-load everything on the page -- that's just a waste of valuable bandwidth.

So SharePoint uses a page router to efficiently refresh only the parts of the page that change when you navigate between pages.

In most cases, that's a good thing.

Except when you try to do navigate between pages from a custom SPFx solution. Especially if you open your links to a new browser tab or a new browser window.

The page router will cause SharePoint to ignore target attributes on your hyperlinks and produce weird errors like the one I got.

And the problem is: your error may be completely different from mine, making it practically impossible to find a solution to this problem.

As it turns out, there is an article about this on the SharePoint development documentation.

All you need to do is to add data-interception='off' to your anchor tag to tell SharePoint not to intercept your page navigation and to bypass the page router.

So, instead of this:

<a href="https://yoursite.sharepoint.com/sites/hr/SitePages/benefits.aspx" target="_blank">Benefits</a>
Enter fullscreen mode Exit fullscreen mode

Use this:

<a href="https://yoursite.sharepoint.com/sites/hr/SitePages/benefits.aspx" target="_blank" data-interception='off'>Benefits</a>
Enter fullscreen mode Exit fullscreen mode

Of course, once you figure out to use data-interception, you'll find that the amazing Julie Turner, Elio Struyf, and Corey Roth all blogged about this before.

Conclusion

In summary: SharePoint ignores your anchor tags' target attributes because it uses a page router to make things more efficient, which causes the issue. Adding data-interception='off' will tell SharePoint not to mess with how to navigate to your pages.

I have never experienced this issue because I always convince my clients not to open hyperlinks in new tabs, unless the links point to non-web documents -- in which case you should use new tabs. Read this article if you want to know why.

I have learned over the years that ultimately, it is up to the client to decide what they want to do... even if it is the wrong thing to do. My job is to give them the relevant information they need to make an educated decision -- even if I don't agree with their decision.

I also learned that any time I have a problem, I should always check Julie Turner's blog first because she often has the answers I'm looking for.

I hope this helps?

Photo Credit

Photo by Agence Olloweb on Unsplash

Oldest comments (0)