How we can open External URL in same tab on click of image?

0
Hi , Can anyone explain how to navigate to external url in same tab on click of image. In that external URL we need to pass 2 dynamic parameter
asked
3 answers
2

Hi Nisha,

              On click of image call a nanoflow. In the Nanoflow you have to create one Java script action and pass the dynamic URL Parameters.In the Java script action your code should be like this

    

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

                                       OR

window.location.replace("http://www.w3schools.com");
answered
1

on click of image  call a a nanoflow. in the nanoflow pass the object with dynamic attributes.

form a string url[use create variable] and the  use activity open link to open this formed URL.

 

answered
1

Hi,

Not sure if we can open the link in the same tab, but to pass the dynamic parameters to the url you can add on click nanoflow in that you create a static url string and pass your dynamic parameters in between as a string variable, and pass that string to “open url” activity.

answered