You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this line is used to look for templates: var template = htmx.find('#' + templateName)
It probably uses querySelector which requires the dots to be escaped. Its probably best to just use this: var template = document.getElementById(templateName)