I have this HTML:
<textarea class="question" onBlur="onBlurFun(event); return true;"
name="aaa" id="bbb"></textarea>
And this function in JavaScript
onBlurFun = function(event) {
var tgt = $(event.target);
alert(tgt.attr('id'));
}
In IE, tgt
is not properly set. What should I do to have access to calling node?