');
}
==================================
This seems to be half-there code for seeing where clicks are heard:
function traceclick(me) {
//return(0); // turn OFF this tracing
var str = 'Alert: ' + 'click event ' + me.nodeName + "\n";
//for(prop in me) { str+=prop + " value: " + me[prop] + "\n"; }
//str += me.toString();
alert(str);
// this.event.toString()
// Print event stuff
function clickfn(e)
if (!e) var e = window.event;
alert(e.type); // print type of event
}
==================================
Also seen in other files.
function trace(str) {
document.getElementById('myspan1').childNodes[0].nodeValue = str;
}
|