Is there a way I can add a setter/getter to the HTMLElement prototype
in internet explorer?
This, for example, works fine in Mozilla:
HTMLElement.pro totype.__define Setter__("fooba r", function (sFoobar)
{
alert( sFoobar );
});
Of course my method I want to add is more complex, the question is is
there any way at all to do this in IE6?
in internet explorer?
This, for example, works fine in Mozilla:
HTMLElement.pro totype.__define Setter__("fooba r", function (sFoobar)
{
alert( sFoobar );
});
Of course my method I want to add is more complex, the question is is
there any way at all to do this in IE6?
Comment