htmgo/js/mhtml.js
2024-09-10 19:52:18 -05:00

10 lines
No EOL
345 B
JavaScript

// Replace 'ws://example.com/socket' with the URL of your WebSocket server
window.onload = function () {
document.querySelectorAll('[m\\:onclick]').forEach(element => {
const value = element.getAttribute('m:onclick')
element.addEventListener('click', () => {
fetch('/click/' + value).catch()
})
});
}