Smart UI Components & Libraries – Grid, Scheduler, Gantt, Kanban for Angular, React, Next.js, Vue, Blazor, JavaScript › Forums › Editor & Inputs › What’s the Vue way to debounce input events in Editor? Tagged: editor, smart editor This topic has 1 reply, 2 voices, and was last updated 1 month, 3 weeks ago by Markov. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts September 30, 2025 at 7:22 am #112994 natejacobsonParticipant Is there a way to load remote content dynamically in Smart Editor using web? October 2, 2025 at 8:36 am #113028 MarkovKeymaster Hi, yes, this is possible. <smart-editor id="editor"></smart-editor> <script> window.onload = async () => { const editor = document.getElementById('editor'); // Load remote content const response = await fetch("https://example.com/article.html"); const html = await response.text(); // Set the HTML content inside the editor editor.value = html; }; </script> Best regards, Markov Smart UI Team https://www.htmlelements.com/ Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In With Google Log In