On May 28, 12:45 pm, cfdvlpr <[EMAIL PROTECTED]> wrote:
> I'd like to use an image to submit a form.  Is there an easy way to do
> this using jQuery?

Is there some reason you can't use <input type="image" />?

Alternatively,

<img id="submitimg" src="image.png" />

::style::
#submitimg {
  cursor: pointer;
}

::onready::
$('#submitimg').click(function() {
  //submit its form
});

Pyro

Reply via email to