in reply to Submit Button
You can do something like the following:
Or if that does not do what you want, you will have to do Javascripty things:<form method='post' action='http:/whatever.com/foo'> Address: <input type='text' name='address'> ... <input type='image' name='whatever' src='url-to-image.jpg' border=0> </form>
You can do the same kind of thing with simple link () tags too. But people need to have Javascript enabled.<form name='form_name' method='post' action='http:/whatever.com/foo'> Address: <input type='text' name='address'> ... <img src='url-to-image.jpg' onClick='document.form_name.submit()'> </form>
-ben
|
|---|