joe_winter
28 Jun 2007, 7:03 AM
I'm working on a page where if I add the following code:
var global_var;
Ext.onReady(function() {global_var = Ext.select('ul.star-rating a', document.body); });
global_var.elements contains the correct number of elements in Firefox, but just a small subset of those elements in IE7 (IE7 is only picking up the anchors within the first ul.star-rating).
I can't reproduce this on a simplified page, but the page I'm working on is valid XHTML. And, even more strangely, if I use FirebugLite in IE and run that select function after the page has loaded, I get the correct results.
Any suggestions for where to start debugging this?
Thanks,
Joe
var global_var;
Ext.onReady(function() {global_var = Ext.select('ul.star-rating a', document.body); });
global_var.elements contains the correct number of elements in Firefox, but just a small subset of those elements in IE7 (IE7 is only picking up the anchors within the first ul.star-rating).
I can't reproduce this on a simplified page, but the page I'm working on is valid XHTML. And, even more strangely, if I use FirebugLite in IE and run that select function after the page has loaded, I get the correct results.
Any suggestions for where to start debugging this?
Thanks,
Joe