₍ vᴗs ₎ 4 weeks ago <script lang="ts"> import type { Attachment } from 'svelte/attachments'; let open =$state(false); const myAttachment: Attachment = (node) => { node.focus(); }; </script> {#if open} <input {@attach myAttachment} /> {/if} <button onclick={()=>open=!open}>{open}</button>