Examples
List of modules
-
Ace Editor
Affix
Alert
Audio
Button
Carousel
Char Counter
Color Picker
Data Table
Datepicker
Diagram Builder
Dropdown
Form Builder
Form Validator
I/O
Image Cropper
Image Viewer
Modal
Node
Pagination
Popover
Progress Bar
Rating
Scheduler
Scrollspy
Sortable Layout
Sortable List
Tabview
Timepicker
Toggler
Toolbar
Tooltip
TreeView
Video
Viewport
Char Counter
<textarea id="myTextarea" class="form-control"></textarea>
<p id="myCounter"></p>
YUI().use(
'aui-char-counter',
function(Y) {
new Y.CharCounter(
{
counter: '#myCounter',
input: '#myTextarea',
maxLength: 140,
on: {
maxLength: function(event) {
alert('The max length limit was reached');
}
}
}
);
}
);