This is another example of the fuzzy name space separation in IE 7. It isn''t the $F() that wasn''t working but rather the fact that the function was using a name that was used in another function and the javascript engine confused the two. Firefox doesn''t do that, solution define all vars inside a function function myfunc(input) { var localvar1, localvar2, localvar2,... } IE appears to default all variables to global --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
This is another example of the fuzzy name space separation in IE 7. It isn''t the $F() that wasn''t working but rather the fact that the function was using a name that was used in another function and the javascript engine confused the two. Firefox doesn''t do that, solution define all vars inside a function function myfunc(input) { var localvar1, localvar2, localvar2,... } IE appears to default all variables to global also thanks Rosenqvist --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---