in reply to Can my Perl CGI script open a new browser tab or window?

Yes, this is possible, but sounds like a very roundabout way of going at it.

See the target="_blank" attribute for links and (I guess) HTML forms.

See WWW::Mechanize::Chrome for a module by me which allows web scraping and running of Javascript. It needs Google Chrome or Chromium installed though.

Replies are listed 'Best First'.
Re^2: Can my Perl CGI script open a new browser tab or window?
by SergioQ (Scribe) on Dec 17, 2019 at 15:45 UTC
    Forgive my being rep repetitive, but I wanted to make sure: My Perl script is on one machine and the browser (in this case Chrome) would be on another machine. So wanted to make sure it works that way. Or does the Perl script have to be local Chrome machine??