document.getElementById('new-collection-form').addEventListener('htmx:after:request', function(evt) { var status = evt.detail.ctx.response ? evt.detail.ctx.response.status : 0; if (status >= 200 && status < 300) { // `#library-collections`, this tab's own frame. The library strip is // described (`6b24f2df` step 1), so `#tab-content` is the strip itself // and refreshing into it would replace the whole strip with one panel. htmx.ajax('GET', '/library/tabs/collections', { target: '#library-collections', swap: 'innerHTML' }); } });