Why does it take four hours for my replies to show up? :(
On May 28, 1:31 pm, Pyrolupus <[EMAIL PROTECTED]> wrote: > 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