Forum Discussion
ornellaLR
8 days agoCommunity Member
STORYLINE : Opening a link in a new tab but without redirecting the learner to it
When we click on a link, we are redirected to a new tab, which causes us to leave the e-learning module page. I am concerned that the learner may not return to the e-learning page to finish it. Would...
Snorre
8 days agoCommunity Member
You can do it using a javascript trigger:
const url = "YOUR URL";
window.open(url, '_blank');
Or if you want a new tab, and not a new window:
const url = "YOUR URL";
window.open(url, '_blank').focus();