Ability to Right click a link and open in new tab or window?

0
Is it possible to right click a link and open in new tab? Currently getting redirected to the home page. I know its a SPA and all, but even in react/angular, you can do this.
asked
1 answers
3

Hi Benjamin,

You can create a javascript which accepts a string parameter,

in the java script you can this code:

window.open(url, "_blank");

and pass the URL inside the javascript,

now, on the click of the link, you can call a nanoflow, and use this javascript action in the nanoflow.

 

Let me know, if you have any issues,

Hope it helps!

answered