originalTarget not set on handler-passed events in IE8

originalTarget not set on handler-passed events in IE8

ran into the issue of originalTarget not being set inside the passed event to a keydown handler in IE8 (maybe other IEs). i'm not sure how much normalizing is supposed to be done in jQ for events, so i'm unsure if this is by design or just missed?

for now resorting to using the following: which works in FF3 and IE8
  1. e.originalTarget || e.srcElement;

thanks,
Leon