Delic,

Two things I noticed just glancing at your page -

1. your No Conlict function is placed inside a <script> inside of another
<script> tag

Try something like

<script type="text/JavaScript">
     jQuery.noConflict();
</script>

2. I don't see where you are initializing the plugin.

Try something like

<script type="text/JavaScript">
jQuery(document).ready(function(){
        jQuery("ul.nav").superfish();
});
</script>

This page(http://users.tpg.com.au/j_birch/plugins/superfish/) should give
you some answers if you're still having problems.  Hope that helps.

-Adam

On Wed, Jun 25, 2008 at 2:40 PM, delic <[EMAIL PROTECTED]> wrote:

>
> Hi guys, I've been hacking away at the Superfish menu and still can't
> seem to get it working well in IE 6...
>
> I've tried the above suggestions and it hasn't worked out...
>
> Cam anyone else offer a suggestion that I may be over looking?
>
> Thank you in advance,
>
> _delic
>
>
> On Jun 24, 11:48 am, delic <[EMAIL PROTECTED]> wrote:
> > Thank you both so much!
> >
> > Um, a few questions...I feel like such an ass because I DID have the
> > jQuery file floating in my scripts folder, but I forgot to have a link
> > to it!
> >
> > Now then, is there a way for me to get jQuery to pick up the mootools
> > slack...I'd rather keep my code as light as possible...=)
> >
> > Thank again, you guys rock,
> >
> > _delic
> >
> > On Jun 24, 3:58 am, "Joel Birch" <[EMAIL PROTECTED]> wrote:
> >
> > > Hi delic,
> >
> > > What Adam said. Also, it seems you are using Mootools also, so you
> > > will want to look into jQuery's noConflict() function once you have
> > > the core jQuery file loading. This will allow you to use both
> > > libraries at the same time - although you would be best off doing
> > > everything with jQuery and get rid of Mootools completely ;)
> >
> > >http://docs.jquery.com/Using_jQuery_with_Other_Libraries
> >
> > > Joel Birch
>

Reply via email to