Privacy Policy
Snippets index

  HTMX snippets

{% block javascripts %}
    {{ block.super }}
    <script type="text/javascript">
        (function($){
            $(document).ready(function() {
                // https://stackoverflow.com/questions/67681380/using-bootstrap-datepicker-with-htmx#76926066
                $('.vDateField').on('change', function(e) {
                    console.log('change')
                    htmx.trigger('input', 'change')
                })
            });
        }(grp.jQuery));
    </script>
{% endblock %}

References: