Skip to content
Advertisement

How do I make it so that only *some* links open in the system browser instead of NW.js browser windows?

I have made a thing in NW.js. By default, any hyperlinks that the user can click on opens in a new NW.js browser window.

I’m trying to make it so that some (not all or none!) of these open in the system browser instead. It is important that these are <a> elements; not JavaScript function calls.

Reading on this page: https://nwjs.readthedocs.io/en/latest/References/Window/#event-new-win-policy-frame-url-policy

… I was able make it so that all hyperlinks open in the system browser. But I only want this for some. I want to specify an attribute or something, such as <a some-attribute="open-in-system-browser"...> which can be checked in the code:

JavaScript

What am I missing? If it can be avoided, I don’t want to “parse the url” to determine this, as it’s ugly and messy. Both “frame” and “policy” seem like useless parameters.

Advertisement

Answer

You don’t need to do anything special, it works that way by default. Everything opens in NW.js directly unless you specifically tell it to open in the default browser.

There are many ways to do this, but a simple example would be

JavaScript

Vanilla JS

JavaScript

or the jQuery version

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement