On 3/20/06, Anthony Lieuallen <arantius at gmail.com> wrote:
> button.['_target']=target;
This does not work with with XPCNativeWrappers. You should probably
try to store a dictionary of button->target pairs as a local
javascript object.
var targets = {};
// ...
targets[button] = target;