Link Opens in new Tab

0
I am opening a web link from button click, The problem I am facing is it that web link opens in new tab. How can I open the link in current tab? 
asked
3 answers
0

Edit: This question has a similar premise and there's a good answer with possible solutions there.

answered
0

You can use the OpenURL action from the Nanoflow Commons module, the provided URL will be opened in the same tab

answered
0

Hi,

Using Jquery code in javascript snippet we can open the URL link in same window,

Jquery code:

.buttonName.click(function() {

         window.open("https://www.google.com","_self")

}

 

answered