Open HTML meta redirect in new window

Posted by Jeremy Person on Stack Overflow See other posts from Stack Overflow or by Jeremy Person
Published on 2010-05-17T19:34:18Z Indexed on 2010/05/17 19:41 UTC
Read the original article Hit count: 274

Filed under:

I need web page to redirect via HTML meta and open that page in a new window. How can I do that?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>Photo Gallery Redirect</title>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <meta http-equiv="Refresh" content="0; url=http://google.com>
    </head>
    <body>
    </body>
</html>

© Stack Overflow or respective owner

Related posts about html