The bug for the issue is https://bugzilla.mozilla.org/show_bug.cgi?id=390411.
If you guys could check it out and weigh in, that would be great. It's
obviously going to become a bigger issue down the road once Firefox
3.0 is eventually released, so we might as well figure out now what's
going on and what needs to be done to resolve the issue!
Thanks,
Ryan
Best,
Thomas
Am 08.08.2007 um 12:45 schrieb RyanVM:
>
> So....I guess nobody cares then?
>
>
> >
Could this be a related issue to this ticket:
document._getElementsByXPath() doesnt grace elements with $()
http://dev.rubyonrails.org/ticket/8843
They could piggy back it with:
//if they can override it...
if(document.getElementsByClassName
(function(){
var old = document.getElementsByClassName;
document.getElementsByClassName = function(){
return $(old.apply(null, arguments));
};
})();
}
//or you could fix it behaviorally
var foo = $A( document.getElementsByClassName('.foobar') );
//or you could use
var foo = $$('.foobar'); // i dont think it uses
document.getElementsByClassName()