Категория: Технология программирования

Кол-во просмотров: 3559

Теги: #python #django


Django+HTMX CRM: Создаем кастомный тег в HTMX. hx-custom='title'

видео:

document.body.addEventListener('htmx:afterRequest', function(event) {
    const hxCustom = event.srcElement.getAttribute("hx-custom")
    if (hxCustom === 'title'){
        const dataTitle = document.getElementById("main-content").querySelector("main[data-title]")
        if (dataTitle) {
            textTitle = dataTitle.getAttribute("data-title")
            document.querySelector("head").querySelector("title").innerHTML = textTitle
        }
    }
});

исходный код: https://github.com/hensly/django-crm-youtube

Категория: Технология программирования

Кол-во просмотров: 3559

Дата создания: 6 июня 2023 г.

Теги: #python #django