I'm converting an existing site to Stripes and it has a feature I don't know how to "convert" to Stripes. There is a text box for a user to enter a search string. To execute the search, the page contains an image map with an onclick event.

What I want to do is pass the contents of the text box to my action bean when the imagemap is clicked.

Any suggestions would be appreciated.

<img src="navtop.gif" alt="Search" width="154" height="139" border="0" usemap="#Map" />
...
<form name="queryform" method=post action="SearchFromHtml" target="_top">
<div align="left" class="box2" id="box2">
  <input name="query" type="text"  value=""/>
</div>

  <map name="Map" id="Map">
<area shape="rect" coords="71,35,113,54" href="" alt="Go" onclick="formSubmit();"/>
</map>
...
</form>
------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to