On Jul 4, 1:39 am, dasboe <[EMAIL PROTECTED]> wrote: > I just ran into a strange Problem that only occurs in Safari. The > following code failed without any error in the Safari javascript > console: > var childElem = $(this.elem).childElements();
Why: $(this.elem) ? Try: $(this).childElements(); assuming that the function's this keyword is actually referencing the element you think it is. -- Rob --~--~---------~--~----~------------~-------~--~----~ 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 [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
