Thanks that did the trick

Armand

On 8/22/07, Wizzud <[EMAIL PROTECTED]> wrote:
>
>
> Correct your HTML (remove the </ul id="nav"> for a start).
> Set your script to (for example) ...
>
> <script type='text/javascript'>
> $(document).ready(function() {
>   $('#nav li > ul').hide();
>   $('#nav a.folditem').click(function() {
>     var _me = $(this);
>     _me.find('img').attr({src:(_me.is('.selected') ? 'plus.gif' :
> 'min.gif')}).end()
>         .toggleClass('selected').next('ul').slideToggle('fast');
>     return false;
>   });
>   $('#666').click();
> });
> </script>
>
> (you don't need the setactive function)
>
>
> Armand Datema wrote:
> >
> >
> > HI
> >
> > I made the following small script
> >
> > http://z.nu.nl/menu/drop2.htm
> >
> > if you click an arrow that section folds open and the arrow is changed
> > to the selected one.
> >
> > However this is working in Firefox but not in IE ( tested in 6 and 7 )
> >
> > How can I get this to work in IE also?
> >
> > thanks in advance
> >
> > Armand
> >
> >
>
> --
> View this message in context: 
> http://www.nabble.com/small-issue-with-script-%28-working-in-firefox-not-in-ie-%29-tf4309891s15494.html#a12270508
> Sent from the JQuery mailing list archive at Nabble.com.
>
>


-- 
Armand Datema
CTO SchwingSoft

Reply via email to