AngularJS with TextArea and Scroll To
This is part four of my look into AngularJS.
- AngularJS Intro and Setup
- AngularJS and Modernizr
- AngularJS and jQueryUI DatePicker
- AngularJS with TextArea and Scroll To
- AngularJS and Javascript Tips
- Coming soon…
Using textarea For Multiline Input
In AngularJS this is how you would use textarea in HTML.
1 |
<textarea name="multilinetext" ng-model="multitext" ng-change="changeTextArea()" rows="3" cols="40" wrap="off"></textarea>
|
For more information on attributes that are available,