翡翠で簡単なアラート イベントを作成しようとしていますが、どうにか機能しません。何が問題なのかよくわかりません。
コード: PS: socket.io コードは無視してかまいません
html
head
script(src='jquery-1.7.1.js')
script(src='/socket.io/socket.io.js')
script
var socket = io.connect('http://localhost:3002/add_users');
socket.on("update", function(message) {
console.log("update: ", message)
});
$(function() {
$("button").click(function() {
alert("hej");
});
});
body
.container
.content
header.page-header
h1 Welcome
.row
form(action='/', method='post')
fieldset
label(for="name") Namn
input(type="text", size="30", name="name", required="required")
button Save
ul
li <a href="/users">User list</a>