A simple way to get the element that starts an event. I'm using this to ascertain which text box is calling the KeyPress event in pure JavaScript:
function KeyPress(event) {
var srcElement = getElement(event);
alert(srcElement.id);
}
function getElement(evt) {
if (window.event)
return window.event.srcElement;
else
return evt.currentTarget;
};
Another variation of this script could be written as such (note, this get's the object that triggers the event):
function getTargetElement(evt){
if (window.event)
return window.event.srcElement;
else
return evt.target;
}
Over and Out
1 comment:
Can anyone recommend the top RMM utility for a small IT service company like mine? Does anyone use Kaseya.com or GFI.com? How do they compare to these guys I found recently: N-able N-central remote support manager
? What is your best take in cost vs performance among those three? I need a good advice please... Thanks in advance!
Post a Comment