Here's what I thought was simple code:
<html>
<head>
<script>
function Foobar(id) {
self = this;
self.id = id;
self.canvas = document.createElement('canvas');
self.canvas.style.border = '1px solid black';
document.body.appendChild(self.canvas);
self.canvas.addEventListener('mousedown', self.onMouseDown, true);
self.onMouseDown = function(e) {
console.log(self.id);
}
}
var s1, s2;
function onLoad() {
s1 = new Foobar(1);
s2 = new Foobar(2);
}
</script>
</head>
<body onload='onLoad()'>
</body>
</html>
Why does the console not pop up with the id number?
Here's a fiddle: http://jsfiddle.net/VRn7v/

varis not optional with self. Also self has meaning in JavaScript, pick a different variable name. – epascarello Aug 3 '12 at 19:51selfcolliding with the existing global variableself. Remember kids, declare your variables. – Šime Vidas Aug 3 '12 at 19:51