textarea-autosize
textarea-autosize copied to clipboard
Vertically adjust a textarea based on user input without using a clone or ghost element.
I'm working in sveltekit with typescript, although I'm new to the latter. I was able to address some typescript warnings when using this package by adding the following to my...
Current implementation works with container scrolling ``` js var $window = $(window); var currentScrollPosition = $window.scrollTop(); // .... $window.scrollTop(currentScrollPosition); ``` The potential issue is that scrollable container for target textarea...