UNPKG
alpinejs-textarea-grow
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Autogrow textarea elements with Alpine JS
alpinejs-textarea-grow
/
src
/
index.js
10 lines
(8 loc)
•
206 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
default
function
(
Alpine
) {
Alpine
.
directive
(
'grow'
,
(
el
) =>
{ el.
addEventListener
(
'input'
,
() =>
{ el.
style
.
height
=
'auto'
el.
style
.
height
=
`
${el.scrollHeight}
px`
}) }) }