How to open a link using FAFR
How to open a link using FAFR
Based on the condition, the below script can be used to open a new link
Open the link in the same tab
window.location.href = "link";
Open the link in a new tab
window.open("link here");