web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Copilot Studio / PVA Chatbot response e...
Copilot Studio
Suggested Answer

PVA Chatbot response external link opening in same SharePoint tab instead of new tab

(0) ShareShare
ReportReport
Posted on by
I have implemented the PVA chatbot in SPFX extension. in responses with reference external SharePoint links opens in same tab.is there a way external SharePoint links opens new tab?when the user clicks the url it will navigate them away from their current session and user loose the chat.
Categories:
I have the same question (0)
  • Suggested answer
    Vinoth Selvam Profile Picture
    1,592 Super User 2025 Season 1 on at
     

    If you're using a custom SPFx extension, you can inject JavaScript to ensure all external links open in a new tab. After the page loads, you can search for any links (anchor tags) and modify them to include the target="_blank" attribute.

    Here’s an example JavaScript snippet you can include in your SPFx web part or extension:

    document.querySelectorAll('a').forEach(function(link) {
    if (link.hostname !== window.location.hostname)
    {
    link.setAttribute('target', '_blank');
    }
    });
     
    Thanks.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Copilot Studio

#1
Valantis Profile Picture

Valantis 619

#2
chiaraalina Profile Picture

chiaraalina 163 Super User 2026 Season 1

#3
Haque Profile Picture

Haque 147

Last 30 days Overall leaderboard