Link
Go to solution
Solved by Hans Christian | Teri,
6 minutes ago, aeliasov9 said:I don't run the website How do i do it?
I mean, you can't (persistently) alter a website if you don't have access to do so.
Here's how to do it with Javascript. Beware that browsers will usually block this behaviour, unless you specifically allow a page to open multiple windows / tabs.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <button onclick="test()">Open multiple links</button> </body> <script> function test() { window.open("https://www.google.com", "_blank"); window.open("https://www.linustechtips.com", "_blank"); } </script> </html>

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now