What is a working HTML code to do this?

LRFLEW

New member
I need it to open a webpage IN A NEW WINDOW, then go back (this page will not always be accessed from the same page, so it needs to tell the web browser "Back"). I've tried...

<html>
<head>
<script type="text/javascript">
window.open("SITE")
history.back();
</script>
</head>
</html>

...and...

<html>
<head>
<META HTTP-EQUIV="REFRESH" CONTENT="X URL=SITE">
<script type="text/javascript">
history.back();
</script>
</head>
</html>

..., but they just went back without opening a new page.
 
Back
Top