it's probably a css issue is why it pops up and then goes away, you probably
have a pixel or two between the two elements, at least thats what I have
seen cause that to happen to me on occasion.



On Sun, Dec 19, 2010 at 2:44 PM, livewire9174 <[email protected]> wrote:

> I have checked the source and it looks fine. Its working on FF and
> Chrome, so the issue is IE related.
>
> On Dec 19, 7:37 pm, Phil Petree <[email protected]> wrote:
> > Not their source, yours... LOL
> >
> > If you're not throwing any javascript warnings like you were the last
> time
> > then its most probably an implementation error and there is really no way
> > for everyone to know how you have implemented the menus so we dont know
> were
> > to look for a typo so it would be a game of twenty questions.
> >
> >
> >
> >
> >
> >
> >
> > On Sun, Dec 19, 2010 at 2:27 PM, livewire9174 <[email protected]>
> wrote:
> > > I have looked at the source, thats why i am posting here.
> >
> > > On Dec 19, 5:38 pm, Phil Petree <[email protected]> wrote:
> > > > Why dont you pop the source up so we can see it...
> >
> > >  > On Sun, Dec 19, 2010 at 11:13 AM, livewire9174 <
> [email protected]>
> > > wrote:
> > > > > Hi everybody,
> > > > > I think my code is cleaned up now, however , I still have the same
> > > > > problem, does anybody have any suggestions?
> >
> > > > > Thanks
> >
> > > > > On Dec 18, 10:00 pm, Walter Lee Davis <[email protected]> wrote:
> > > > > > If you have the Firebug window open, then click on the console
> tab so
> > > > > > the errors will appear. If Firebug can work out where the error
> is
> > > > > > coming from, it will tell you. Click on the error to focus on
> that
> > > > > > line of the script. If the error is nested a few layers down,
> you're
> > > > > > probably going to have to trace by the function name in your own
> code
> > > > > > -- or set breakpoints and step through the code (but I've never
> > > > > > learned properly how to do that, so don't ask!).
> >
> > > > > > Walter
> >
> > > > > > On Dec 18, 2010, at 12:47 PM, livewire9174 wrote:
> >
> > > > > > > Thanks Walter,
> > > > > > > I have just installed firebug, I know this is not related the
> above
> > > > > > > question, but how do I get firebug to show me what line of
> > > javascript
> > > > > > > is getting upset?
> >
> > > > > > > thanks
> >
> > > > > > > On Dec 18, 4:18 pm, Walter Lee Davis <[email protected]>
> wrote:
> > > > > > >> There's a general error in your code (found it in Safari). It
> > > looks
> > > > > > >> like you're trying to call an effect on an object that doesn't
> > > exist,
> > > > > > >> because you're referencing $(element) on a null object from
> inside
> > > > > > >> effects.js.
> >
> > > > > > >> Take a look through your code, and make sure that you only
> call
> > > > > > >> effects on an object that you're sure exists. So for example,
> > > > > > >> instead of
> >
> > > > > > >>         $('something').appear();
> >
> > > > > > >> you could do
> >
> > > > > > >>         var elm;
> > > > > > >>         if(elm = $('something')) elm.appear();
> >
> > > > > > >> Another great trick is this (if you're working from an element
> > > that
> > > > > > >> can be gotten through css)
> >
> > > > > > >> $$('#something').invoke('appear');
> >
> > > > > > >> Since that's like writing a for loop over an array of results,
> it
> > > > > > >> naturally works fine when there are no results -- it just
> doesn't
> > > > > > >> fire.
> >
> > > > > > >> In any case, you really want to test this stuff in Firebug or
> > > > > > >> Safari's
> > > > > > >> Web Inspector. That gives you a real-time look into what your
> code
> > > is
> > > > > > >> doing or not.
> >
> > > > > > >> Walter
> >
> > > > > > >> On Dec 18, 2010, at 9:08 AM, livewire9174 wrote:
> >
> > > > > > >>> Hi everybody.
> > > > > > >>> I hope this is the correct place to post.
> >
> > > > > > >>> I have a menu system using the scriptaculous code. However,
> the
> > > menu
> > > > > > >>> disappears when using Internet Explorer. I am not sure what I
> am
> > > > > > >>> doing
> > > > > > >>> wrong, but it must be something simple?
> >
> > > > > > >>> My page is here,http://bit.ly/haBsGY,  just mouse over the
> menus
> > > and
> > > > > > >>> you will see the issue.
> >
> > > > > > >>> Please help if you can,
> >
> > > > > > >>> Thanks in advance.
> >
> > > > > > >>> --
> > > > > > >>> You received this message because you are subscribed to the
> > > Google
> > > > > > >>> Groups "Prototype & script.aculo.us" group.
> > > > > > >>> To post to this group, send email to
> > > > > [email protected]
> > > > > > >>> .
> > > > > > >>> To unsubscribe from this group, send email to
> > > > > [email protected]<prototype-scriptaculous%[email protected]><prototype-scriptaculou
> s%[email protected] <s%[email protected]>
> ><prototype-scriptaculou
> > > s%[email protected] <s%[email protected]><
> s%[email protected] <s%[email protected]>
> >>
> > > > > > >>> .
> > > > > > >>> For more options, visit this group athttp://
> > > > > groups.google.com/group/prototype-scriptaculous?hl=en
> > > > > > >>> .
> >
> > > > > > > --
> > > > > > > You received this message because you are subscribed to the
> Google
> > > > > > > Groups "Prototype & script.aculo.us" group.
> > > > > > > To post to this group, send email to
> > > > > [email protected]
> > > > > > > .
> > > > > > > To unsubscribe from this group, send email to
> > > > > [email protected]<prototype-scriptaculous%[email protected]><prototype-scriptaculou
> s%[email protected] <s%[email protected]>
> ><prototype-scriptaculou
> > > s%[email protected] <s%[email protected]><
> s%[email protected] <s%[email protected]>
> >>
> > > > > > > .
> > > > > > > For more options, visit this group athttp://
> > > > > groups.google.com/group/prototype-scriptaculous?hl=en
> > > > > > > .
> >
> > > > > --
> > > > > You received this message because you are subscribed to the Google
> > > Groups
> > > > > "Prototype & script.aculo.us" group.
> > > > > To post to this group, send email to
> > > > > [email protected].
> > > > > To unsubscribe from this group, send email to
> > > > > [email protected]<prototype-scriptaculous%[email protected]><prototype-scriptaculou
> s%[email protected] <s%[email protected]>
> ><prototype-scriptaculou
> > > s%[email protected] <s%[email protected]><
> s%[email protected] <s%[email protected]>
> >>
> > > > > .
> > > > > For more options, visit this group at
> > > > >http://groups.google.com/group/prototype-scriptaculous?hl=en.
> >
> > > --
> > >  You received this message because you are subscribed to the Google
> Groups
> > > "Prototype & script.aculo.us" group.
> > > To post to this group, send email to
> > > [email protected].
> > > To unsubscribe from this group, send email to
> > > [email protected]<prototype-scriptaculous%[email protected]><prototype-scriptaculou
> s%[email protected] <s%[email protected]>>
> > > .
> > > For more options, visit this group at
> > >http://groups.google.com/group/prototype-scriptaculous?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Prototype & script.aculo.us" group.
> To post to this group, send email to
> [email protected].
> To unsubscribe from this group, send email to
> [email protected]<prototype-scriptaculous%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/prototype-scriptaculous?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" 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/prototype-scriptaculous?hl=en.

Reply via email to