1htmx.onLoad(function (content) { 2 const sortables = content.querySelectorAll(".sortable"); 3 for (const sortable of sortables) { 4 new Sortable(sortable, { 5 animation: 150, 6 }); 7 } 8});