I have this function:
jel.data.each(function(jop){
  new Element('option',{'value':jop.frval}).appendText
(jop.frname).injectInside(frmel);
})

Works fine in FF, but IE says that jop is undefined, and the error i
get is that jop.frval is null or not an object.
However, if i debug using Visual Studio, and add a watch to jel.data
you can clearly see that there are 15 elements in the array.
So why is this not working in IE?

Reply via email to