Book Image

Practical Web Development

By : Paul Wellens
Book Image

Practical Web Development

By: Paul Wellens

Overview of this book

Table of Contents (23 chapters)
Practical Web Development
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
10
XML and JSON
Index

Textarea


When input is expected in a form that is longer than just a few words, you can use the textarea element to display an input box. You can specify the size of the box in rows and columns by using the rows and cols attributes. Here is an example:

<textarea row="4" cols="50" id="mytextbox">
</textarea>