htmx
htmx copied to clipboard
How to update content from template DOM node without issuing hx-ajax?
I thought this could be useful example:
<button hx-on:click="this.innerHTML = htmx.find('#clicked-message-template').innerHTML">Click me</button>
<template id="clicked-message-template">clicked</template>