htmgo/js/mhtml.js

10 lines
345 B
JavaScript
Raw Normal View History

2024-09-11 00:52:18 +00:00
// 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()
})
});
}