I have this script:
function postBackByObject(e) { var o = window.event.srcElement || e.target; if (o.tagName == \"INPUT\" && o.type == \"check
It's possible to pass event object in the inline declaration:
function postBackByObject(e) { var o = e.srcElement || e.target; // ... }