shodan
2007-Mar-27 11:35 UTC
Problem in Line 1906 - ''undefined'' is null on not an object
I''m using prototype 1.5.0 in my system and i now got two clients with the same problem. They are both using IE7. They both get an error in line 1906 the details say: ''undefined'' ist Null oder kein Objekt'' which means ''undefined'' is null on not an object Does someone know something about it. The strangest is that i can''t reproduce that error on my IE7. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
zio budda
2007-Mar-27 12:43 UTC
Re: Problem in Line 1906 - ''undefined'' is null on not an object
The element X does not exist. Which is X ? Mbo''. This is a common typo error like <div id="mIo"> and you try to $(''mJo'').setStyle(...). Sorry for bad english. PS: use firefox+firebug and found the error. -- Michel ''ZioBudda'' Morelli michel-0oFb7YEmpcLk1uMJSBkQmQ@public.gmane.org http://www.ziobudda.net ICQ: 58351764 http://www.phpbook.it FAX: 0291390660 http://www.ajaxblog.it TEL: 3939890025 --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
shodan
2007-Mar-27 15:25 UTC
Re: Problem in Line 1906 - ''undefined'' is null on not an object
You missunderstood me. I''m am using IE6, IE7 and Firefox (with firebug), and there is no error showing up anywhere. But i have some clients out of some hundreds where this error occures. This is really strange. I think this has someting to do with the serialization of forms or form elements. I will try some try & catch blocks but because the error is not occuring on my PCs i can not really search the bug. On 27 Mar, 14:43, "zio budda" <ziobu...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> The element X does not exist. Which is X ? Mbo''. This is a common typo > error like > <div id="mIo"> and you try to > $(''mJo'').setStyle(...). > > Sorry for bad english. > > PS: use firefox+firebug and found the error. > -- > Michel ''ZioBudda'' Morelli mic...-0oFb7YEmpcLyWu+eSqVW3A@public.gmane.org://www.ziobudda.net ICQ: 58351764http://www.phpbook.it FAX: 0291390660http://www.ajaxblog.it TEL: 3939890025--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Thomas Fuchs
2007-Mar-27 17:33 UTC
Re: Problem in Line 1906 - ''undefined'' is null on not an object
Just a wild guess: Is this with Ajax requests? Some third-party ad blockers are known to cause issues (like some of Norton''s stuff). There''s a FAQ on the Gmail site that deals with that: http://mail.google.com/support/bin/topic.py?topic=1523 best, Thomas Am 27.03.2007 um 17:25 schrieb shodan:> > You missunderstood me. I''m am using IE6, IE7 and Firefox (with > firebug), > and there is no error showing up anywhere. > But i have some clients out of some hundreds where this error occures. > This is really strange. I think this has someting to do with the > serialization of forms or form elements. > I will try some try & catch blocks but because the error is not > occuring on my PCs i can not really > search the bug. > > > On 27 Mar, 14:43, "zio budda" <ziobu...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> The element X does not exist. Which is X ? Mbo''. This is a common >> typo >> error like >> <div id="mIo"> and you try to >> $(''mJo'').setStyle(...). >> >> Sorry for bad english. >> >> PS: use firefox+firebug and found the error. >> -- >> Michel ''ZioBudda'' Morelli >> mic...-0oFb7YEmpcLyWu+eSqVW3A@public.gmane.org://www.ziobudda.net >> ICQ: 58351764http://www.phpbook.it >> FAX: 0291390660http://www.ajaxblog.it >> TEL: 3939890025 > > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
shodan
2007-Mar-27 19:15 UTC
Re: Problem in Line 1906 - ''undefined'' is null on not an object
I just found out that it''s not a prototype problem. The code looks like this: JS: function go(element) { Elements = Form.getElements(element.form); } HTML: <form action="..." ..> <input type="button" onclick="go(this)"> </form> It seems that element.form on these two clients ist undefined, normlally it is a reference to the <form> but not this time. the question is why? even element.type which normally return ''button'' return undefined and but typeof element returns object so some kind of object is passed through. Maybe it''s really Norton. I have to check this. On 27 Mar, 19:33, Thomas Fuchs <t.fu...-moWQItti3gBl57MIdRCFDg@public.gmane.org> wrote:> Just a wild guess: > > Is this with Ajax requests? Some third-party ad blockers are known to > cause issues (like some of Norton''s stuff). > > There''s a FAQ on the Gmail site that deals with that:http://mail.google.com/support/bin/topic.py?topic=1523 > > best, > Thomas > > Am 27.03.2007 um 17:25 schrieb shodan: > > > > > > > You missunderstood me. I''m am using IE6, IE7 and Firefox (with > > firebug), > > and there is no error showing up anywhere. > > But i have some clients out of some hundreds where this error occures. > > This is really strange. I think this has someting to do with the > > serialization of forms or form elements. > > I will try some try & catch blocks but because the error is not > > occuring on my PCs i can not really > > search the bug. > > > On 27 Mar, 14:43, "zio budda" <ziobu...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> The element X does not exist. Which is X ? Mbo''. This is a common > >> typo > >> error like > >> <div id="mIo"> and you try to > >> $(''mJo'').setStyle(...). > > >> Sorry for bad english. > > >> PS: use firefox+firebug and found the error. > >> -- > >> Michel ''ZioBudda'' Morelli > >> mic...-0oFb7YEmpcLyWu+eSqVW3A@public.gmane.org://www.ziobudda.net > >> ICQ: 58351764http://www.phpbook.it > >> FAX: 0291390660http://www.ajaxblog.it > >> TEL: 3939890025- Ukryj cytowany tekst - > > - Pokaż cytowany tekst ---~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---