Skip to main content

max / makenotwork

283 B · 6 lines History Blame Raw
1 document.getElementById('new-collection-form').addEventListener('htmx:afterOnLoad', function(evt) {
2 if (evt.detail.xhr.status >= 200 && evt.detail.xhr.status < 300) {
3 htmx.ajax('GET', '/library/tabs/collections', { target: '#tab-content', swap: 'innerHTML' });
4 }
5 });
6