learnlytics-go/templ/generator/test-once/expected.html
2025-03-20 12:35:13 +01:00

8 lines
299 B
HTML

<script>
function hello(name) {
alert('Hello, ' + name + '!');
}
</script>
<input type="button" value="Hello User" data-name="user" onclick="hello(this.getAttribute('data-name'))">
<input type="button" value="Hello World" data-name="world" onclick="hello(this.getAttribute('data-name'))">