input type="image" help

R

rodchar

hi all,

<input type="image" id="submitButton" alt="Create this account" />

is there a way to render the submit button in ie the way it does in firefox?

ie puts a placeholder for the image but i'd rather have the alt text show by
itself like in firefox. is this possible?

http://www25.brinkster.com/rodchar/ieff.htm

thanks,
rodchar
 
B

bruce barker

<input type="submit" id="submitButton" value="Create this account" />


-- bruce (sqlwork.com)
 
R

rodchar

but can you style it not to look like a button?

bruce barker said:
<input type="submit" id="submitButton" value="Create this account" />


-- bruce (sqlwork.com)
 
A

Alexey Smirnov

but can you style it not to look like a button?







- Show quoted text -

You problem is that you specified type="image"

Why do you need image if you don't set the image? Use
src="filename.gif" to set the image or don't use that type at all. Use
"text" instead
 

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

Top