I have a logfile on the server and I want to be able to open it with a javascript, go through all the links and open them in separate tabs in the browser. Is this possible?
The links are stored as an array like this (php stored):
Kieran Huggins wrote:on the server? Then you'll want to make an ajax call and parse the file yourself (though you'll need to print the array as text, hint: JSON)
Any suggestions on how to do that? (I'm pretty new to coding)