Click to See Complete Forum and Search --> : Opening a new page from an image-link


Albon
04-10-2005, 01:56 AM
How does on use a image as a link to open a new page?
Its got to be possible. Or even a pop up say 200 x 400
better yet a window sized to fit a larger version of the
image for previewing by the page visitor?

Albon
Novice Html Guy

the tree
04-10-2005, 04:31 AM
<a href="page.htm" target="_blank" onclick="window.open(this.href,200,400); return false;"><img src="image.gif"></a>With JS, that'll open a new window 200 x 400, without: it'll open a new window.