blob: 3d7bd6c13a381a94daba8171e139b98182a6643f (
plain)
1
2
3
4
|
<script>
var gKeyDownChild = 0, gKeyPressChild = 0, gKeyUpChild = 0;
</script>
<input id='i4' onkeydown="gKeyDownChild++" onkeypress="gKeyPressChild++" onkeyup="gKeyUpChild++; this.parentNode.removeChild(this);">
|