hi, now i want to register a listener:
if (document.addEv entListener)//IE6 does not support it
x.addEventListe ner('click', method, false);
else
x.onclick = method;
but my problem is that i want to pass some arguments along with the calling,
how coult i do that??
Another question, it is posible to distinguish between quirk and strict mode
in the various browsers (opera, konqueror, mozilla, ie, mainly)
Thanks
if (document.addEv entListener)//IE6 does not support it
x.addEventListe ner('click', method, false);
else
x.onclick = method;
but my problem is that i want to pass some arguments along with the calling,
how coult i do that??
Another question, it is posible to distinguish between quirk and strict mode
in the various browsers (opera, konqueror, mozilla, ie, mainly)
Thanks
Comment