This is a discussion on Clear Text box within the PHP General forums, part of the PHP Programming Forums category; How to clear a text box and text area box with a single CLEAR button?...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Navshah wrote: > How to clear a text box and text area box with a single CLEAR button? Your form must be like this: ?= somefile or value <form action=?> <input type=text name=? value=? size=? maxlength=?> <textarea rows=? cols=? name=?></textarea> .. .. .. .. </form> Just before </form> type the following code: <input type=reset value=Clear /> This may/may not work. If it does not work, don't blame us! THE ITK GROUP INDIA JOIN OUR FORUM www.iforum.cq.bz |
|
|||
|
Navshah wrote: > How to clear a text box and text area box with a single CLEAR button? Your form must be like this: ?= somefile or value <form action=?> <input type=text name=? value=? size=? maxlength=?> <textarea rows=? cols=? name=?></textarea> .. .. .. .. </form> Just before </form> type the following code: <input type=reset value=Clear /> This may/may not work. If it does not work, don't blame us! If it works, join our forum else don't join! THE ITK GROUP INDIA JOIN OUR FORUM www.iforum.cq.bz |