Open multiple pages in new tab when press enter
@Jacob Kofoed
You could implement a new custom action to open links in new tabs , as this is something toddle doesn 't support out of the box (see why below ) . Something like this could work : function OpenInNewTab({ url }) {
window.open(url, "_blank")
}This may not always work , and must be called from a trusted event . Keep in mind that modern browsers have strict popup blocker policies . Popup windows must be opened in direct response to user input , and a separate user gesture event is required for each Window .open ( ) call . This prevents sites from spamming users with lots of windows . However , this poses an issue for multi -window applications . To work around this limitation , you can design your applications to : - Open no more than one new window at once . - Reuse existing windows to display different pages . - Advise users on how to update their browser settings to allow multiple windows . https://developer.mozilla.org/en-US/docs/Web/API/Window/open#description



.jpeg/public)