Skip to content

Instantly share code, notes, and snippets.

@danawoodman
Created January 14, 2025 19:44
Show Gist options
  • Save danawoodman/3b1816b0bf2d458c3b4055d777414614 to your computer and use it in GitHub Desktop.
Save danawoodman/3b1816b0bf2d458c3b4055d777414614 to your computer and use it in GitHub Desktop.
Svelte action to auto-grow a textarea

Svelte action to auto-grow a textarea

A Svelte action that whena applied to a textaarea supports automatically growing or shrinking as content is added or removed.

Implementation

src/lib/actions/autogrow.ts:

export function autogrow(node: HTMLElement) {
	function adjustHeight() {
		node.style.height = "auto"; // Reset the height
		node.style.height = `${node.scrollHeight}px`; // Set height to fit content
	}

	// Attach the `input` event listener
	node.addEventListener("input", adjustHeight);

	// Adjust height on mount
	adjustHeight();

	return {
		destroy() {
			node.removeEventListener("input", adjustHeight);
		},
	};
}

Usage

<script lang="ts">
  import { autogrow } from "$lib/actions/autogrow";
</script>

<textarea use:autogrow />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment