Form submit button

  • Thread starter Thread starter persona
  • Start date Start date
P

persona

Can you use you own button (s) submit and reset rather that the standard
ones in FP

Thanks for the help
 
The Submit and Reset buttons are HTML elements, and are limited by
HTML standards.
The Submit button can be replaced by your own image, as in
<input type="image" src="path/to/imagename.gif">
Clicking on this image will always submit the form - but you cannot
use an image for the reset button.
You can also use CSS to style the standard button.
See www.rxs-enterprises.org/tests/search_form.htm for an example.
 
Back
Top