[thelist] mark portions of a image online

david.landy at somerfield.co.uk david.landy at somerfield.co.uk
Tue Apr 27 03:32:23 CDT 2004


Hi Weem,

Sounds like you want to use an <input type=image> element in your HTML:

<code>

<!-- show the x-y coords if the image was clicked -->
x: <%=request.getParameter("myimage.x")%><br>
y: <%=request.getParameter("myimage.y")%><br>

<!-- present a form with a clickable image -->
<form action="test.jsp" method="post">
<input name="myimage" type="image" src="images/stop.gif">
</form>

</code>

The x-y coords get passed as form parameters called myimage.x and myimage.y,
following the name you give the image element. The snippet above uses
javascript syntax but they can be retrieved just as easily with any
server-side scripting language eg PHP, ASP, Perl, etc.

HTH.

David

-- 
 
If you are not the intended recipient of this e-mail, please preserve the
confidentiality of it and advise the sender immediately of any error in
transmission. Any disclosure, copying, distribution or action taken, or
omitted to be taken, by an unauthorised recipient in reliance upon the
contents of this e-mail is prohibited. Somerfield cannot accept liability
for any damage which you may sustain as a result of software viruses so
please carry out your own virus checks before opening an attachment. In
replying to this e-mail you are granting the right for that reply to be
forwarded to any other individual within the business and also to be read by
others. Any views expressed by an individual within this message do not
necessarily reflect the views of Somerfield.  Somerfield reserves the right
to intercept, monitor and record communications for lawful business
purposes.


More information about the thelist mailing list