27 lines
617 B
HTML
27 lines
617 B
HTML
<!-- public/index2.html -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Emitter Page</title>
|
|
</head>
|
|
<body>
|
|
<h2>This is index2.html (Emitter)</h2>
|
|
<button onclick="emitScan()">Emit scan_dia_lagi</button>
|
|
|
|
<script src="https://cdn.socket.io/4.7.5/socket.io.min.js"></script>
|
|
<script>
|
|
const socket = io();
|
|
|
|
socket.on('connect', () => {
|
|
console.log('Connected to server:', socket.id);
|
|
});
|
|
|
|
function emitScan() {
|
|
socket.emit('scan_dia_lagi', 'Hello from index2.html!');
|
|
console.log('📤 Emitted scan_dia_lagi');
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|