|
Posted by Chris F.A. Johnson on 07/19/06 20:53
On 2006-07-19, azzamqazi@gmail.com wrote:
> Hi guys,
>
> How are you all doing? Hope good. I have a problem and was
> wondering if someone can help me out here. I have a webpage with images
> in it. Now what i want to do is that when the user clicks on the image,
> the image will appear in a new Window and will be enlarged. I dont know
> much HTML and would greatly appreciate it if someone can help me out
> here.
The important thing is DON'T! If the user wants it in a new window,
he can tell the browser to do that. Just put the img in a link, with
a thumbnail in the img:
<a href="xxx.png"><img src="xxx-thumb.png" alt="xxx.png"></a>
--
Chris F.A. Johnson <http://cfaj.freeshell.org>
===================================================================
Author:
Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)
[Back to original message]
|