<table>
<tr>
<td></td>
<td><input type="text" class="data"></td>
</tr>
<tr>
<td></td>
<td><input type="text" class="data"></td>
</tr>
</table>
bound functions
function fix(event){
console.log("haha");
}
document.addEventListener("blur",fix,true);
Why is the blur event not triggered, console.log (""); not executed when the focus is moved away from an input?