# NR5: trigger event when opening the documentation popover

**URL:** https://discourse.nodered.org/t/nr5-trigger-event-when-opening-the-documentation-popover/101272
**Category:** Feature Requests
**Tags:** node-red-5
**Created:** [13 June 2026 09:43 UTC](https://discourse.nodered.org/t/nr5-trigger-event-when-opening-the-documentation-popover/101272 "2026-06-13T09:43:23Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![gregorius](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/gregorius/32/73816_2.png) [@gregorius](https://discourse.nodered.org/u/gregorius)
#### Post date: [13 June 2026 09:43 UTC](https://discourse.nodered.org/t/nr5-trigger-event-when-opening-the-documentation-popover/101272/1 "2026-06-13T09:43:24Z")

</div>

Hi There,

I noticed, by doing `RED.events.DEBUG = true` in the browser that this action:

![Screen Recording 2026-06-13 at 11.36.40](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/3X/6/2/624c07ec652705941a7c2ea0abce14d8452653df.gif)

does not trigger an event. It would nice - since this feature is being introduced with NR5 - to have an event triggered so that custom hooks can be added (in this case adding some JS to make the grey button work).

Just an idea ...

---

<div class="post-metadata">

### Author: ![gregorius](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/gregorius/32/73816_2.png) [@gregorius](https://discourse.nodered.org/u/gregorius)
#### Post date: [13 June 2026 11:00 UTC](https://discourse.nodered.org/t/nr5-trigger-event-when-opening-the-documentation-popover/101272/2 "2026-06-13T11:00:38Z")

</div>

Worked around with

```auto
        let workspaceChangedCallback = () => {
            setTimeout(() => {
                $('.red-ui-flow-node-docs g').on('click', () => { 
                    setTimeout(activateTranscriptButton, 300) 
                })
            }, 500)
        }

        RED.events.on("workspace:change", workspaceChangedCallback)

```

so no need for an extra event.

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/1X/d073cd938eafa2e558d7c2cd59003b3ef4963033.png) [@system](https://discourse.nodered.org/u/system)
#### Post date: [27 June 2026 11:01 UTC](https://discourse.nodered.org/t/nr5-trigger-event-when-opening-the-documentation-popover/101272/3 "2026-06-27T11:01:10Z")

</div>

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.
