Anyone able to get the replace() function to work in Opera v9.23 using Prototype 1.6_rc0? It''s not working on any tests for me. - Dash - --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
On 8/24/07, David Dashifen Kees <dashifen-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Anyone able to get the replace() function to work in Opera v9.23 using > Prototype 1.6_rc0?The Windows version of 9.23 is working for me. :Dan Dorman --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Interesting ... it was the Windows version of 9.23 that won''t work for me across multiple pages. Must be something on my end, though. Dan Dorman wrote:> On 8/24/07, David Dashifen Kees <dashifen-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> Anyone able to get the replace() function to work in Opera v9.23 using >> Prototype 1.6_rc0? >> > > The Windows version of 9.23 is working for me. > > :Dan Dorman > > > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Could this be a reason? http://dev.rubyonrails.org/ticket/9261 http://dev.rubyonrails.org/ticket/9261 -- View this message in context: http://www.nabble.com/Element.replace%28%29-in-Opera-%281.6_rc0%29-tf4324487.html#a12317761 Sent from the RubyOnRails Spinoffs mailing list archive at Nabble.com. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Yup, that would be it. I didn''t want to search for and/or submit a ticket until I had more information. Thanks, Kangax. - Dash - kangax wrote:> Could this be a reason? > http://dev.rubyonrails.org/ticket/9261 > http://dev.rubyonrails.org/ticket/9261 >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Found a solution. Opera doesn''t mind if you do something like this: someElement.parentNode.replaceChilde(newElement, oldElement); It''s only if you call: oldElement.replace(newElement) that you run into a problem, and that seems to be only if oldElement is a form element, like the bug in the thread above this post indicated. FYI, - Dash - David Dashifen Kees wrote:> Yup, that would be it. I didn''t want to search for and/or submit a > ticket until I had more information. Thanks, Kangax. > > - Dash - > > kangax wrote: > >> Could this be a reason? >> http://dev.rubyonrails.org/ticket/9261 >> http://dev.rubyonrails.org/ticket/9261 >> >> > > > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---