jQuery 1.2.6 sucks
HTML
<div onclick={ handler('world') }>Say hello</div>
JavaScript
handler(e, a) {
console.log('Hello ' + a); // Hello world
}
<div onclick={ handler('world') }>Say hello</div>
handler(e, a) {
console.log('Hello ' + a); // Hello world
}