input type="image" help

  • Thread starter Thread starter rodchar
  • Start date Start date
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
 
<input type="submit" id="submitButton" value="Create this account" />


-- bruce (sqlwork.com)
 
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)
 
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
 
Back
Top