Lars Eighner pisze:
Quote:
This is crossposted because if what I want to can be done, I don't know
whether it would be done with INPUT or BUTTON.
What I want to do is to make a submit form control look like a text link. |
There is no need. Just a normal input type submit duly given style. It
works everywhere, even in the off javascript. Example:
<input type="submit" value="OK" name="submitme" id="submitme" />
input{
border:0;
background:none;
text-decoration:underline;
/* Corrects for IE */
width:auto;
overflow:visible;
}
That's all.
--
Peter