[jQuery] Re: Superfish - Menu put in Master page (asp.net MVC) doesn't behave ok in content pages

2009-07-08 Thread Steve Hueners
Thankx for following this issue up...I'd find it helpful to review the other pages that lead you to this point. thx again. On Wed, Jul 8, 2009 at 12:48 AM, HariOm wrote: > > Thanks Charlie for your quick reply. > > I got it working. The problem was with Master page in MVC may be. > > Before I wa

[jQuery] Re: Superfish - Menu put in Master page (asp.net MVC) doesn't behave ok in content pages

2009-07-08 Thread HariOm
Thanks Charlie for your quick reply. I got it working. The problem was with Master page in MVC may be. Before I was adding reference to superfish.js file before the ContentPlaceHolder for head in master page. like: "> "> $(function() { $('ul.sf-menu').superfish();

[jQuery] Re: Superfish - Menu put in Master page (asp.net MVC) doesn't behave ok in content pages

2009-07-07 Thread Charlie
As for master vs content pages, have no idea what your MVC looks like or what your templates look like, or directory structure. Best resource for that would be a forum related to MVC. As previously suggested, "If problem persists, try posting a link". >From my vantage point you have too many

[jQuery] Re: Superfish - Menu put in Master page (asp.net MVC) doesn't behave ok in content pages

2009-07-07 Thread HariOm
Charlie, yes you are right. It doesn't recognize the function because it seems there is no respective superfish plugin loaded, but when I look at the HTML in firebug or developer tool in IE then I can see that it has already loaded. Even I manually put the calling of that script ( $('ul.sf-menu').

[jQuery] Re: Superfish - Menu put in Master page (asp.net MVC) doesn't behave ok in content pages

2009-07-07 Thread Charlie
"is not defined function"  error means calling a function that doesn't exist at time it is called. Make sure path to your js file is valid, that is where the function is defined. Also be sure jquery.js being loaded before  plugin js . If problem persists post a link  You can put your function