Send image in value html

You can only link to the image in the text input so the value will be the location of the image.

<input type="text" value="www.website.com/image.gif"> 

If you want them to type into the text field the value will change to whatever they type into the field.

You also get an actual image input type

 <input type="image" src="img.gif" alt="image"> 

Leave a Comment