add submit functionality to the img button

A

alcool

hi,
I would like use a image button like a submit button in a form.
it is possible to do

i.e. (in the end of a form)

<a href="" onClick="funcSubmit()"><img src="../immagini/save.png"
alt="Save" /></a>ù

I hope in your suggestion


bye
 
R

RobG

hi,
I would like use a image button like a submit button in a form.
it is possible to do

i.e. (in the end of a form)

<a href="" onClick="funcSubmit()"><img src="../immagini/save.png"
alt="Save" /></a>ù

If you were to do that, why bother with the A element?

<img onclick="funcSubmit()" ... >

And those without script support, or for whom your script doesn't
work, can't submit the form.
 
R

Rik

hi,
I would like use a image button like a submit button in a form.
it is possible to do

i.e. (in the end of a form)

<a href="" onClick="funcSubmit()"><img src="../immagini/save.png"
alt="Save" /></a>ù

I hope in your suggestion

Just curious, why is this not ok for your purpose:

<input type="image" src="../immagini/save.png">

??
 
T

The Natural Philosopher

Randy said:
alcool said the following on 7/25/2007 6:05 AM:

Umm, did you try it?

<img onclick="funcSumbit()" src="....">

function funcSubmit(){
document.formID.submit();
}

No need to use a link when images in modern browsers support the
onclick. But, if the only way to submit the form is with JS, what
happens if JS is disabled or not supported?

I know of at least one site where the javascript is so broswer dependent
that that is effectively the case. Still has to be viewed with IE6.
 
T

Thomas 'PointedEars' Lahn

Rik said:
Just curious, why is this not ok for your purpose:

<input type="image" src="../immagini/save.png">

It can only be being backwards-compatible to pre HTML-4-UAs with the
tradeoff of not providing graceful degradation for script-incapable UAs.


PointedEars
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,995
Messages
2,570,236
Members
46,822
Latest member
israfaceZa

Latest Threads

Top