View Full Version : Overlapping Content Link
jackkiss
08-04-2005, 02:59 AM
Is it possible to open new window like it is done for links with POST method where target=? and onClick button=onClick for links
jscheuer1
08-04-2005, 04:46 AM
<form action="whatever.htm" method="post" target="_blank">
<input type="text" name="art" value="Monalisa">
<input type="submit" value="Go!">
</form>Works with get also.
<a href="whatever.htm" onclick="window.open(this.href);return false;">Let's Go!</a>or:
<a href="#" onclick="window.open('whatever.htm');return false;">Let's Go!</a>
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.