Displaying a “clean up button” (delete button) in the iPhone webapp text box

I am creating an iPhone webapp with a text box. I would like this text box to display a “clear button” on the right side of the window ... otherwise a round gray button with an X in it.

Is it possible to set the css or html property so that safari can handle this, or do I need to develop this feature myself using an image and some code.

I know that you can set the Clear Button property for a UITextBox for your own application, but this is a webapp creation that I create.

+6
web-applications iphone button clear textbox
source share
1 answer

A search input box displays a rounded text box with an X button. This is the closest I found without using javascript.

<input xmlns="http://www.w3.org/1999/xhtml" type="search" value="search me" /> 
+4
source share

All Articles