Aha, now I see the problem, and it makes perfect sense. In the file you sent, we have this block: ------------------------------ <script type="text/javascript" src="/tw2/resources/tw2.jquery/static/jquery/1.7.1/jquery.js"></script> <script type="text/javascript" src="/tw2/resources/tgext.menu.util/static/js/jquery.bgiframe.js"></script> <script type="text/javascript" src="/tw2/resources/tgext.menu.util/static/js/jquery.dimensions.js"></script> <script type="text/javascript" src="/tw2/resources/tgext.menu.util/static/js/jquery.positionBy.js"></script> <script type="text/javascript" src="/tw2/resources/tgext.menu.util/static/js/jquery.jdMenu.js"></script><script type="text/javascript" src="/toscawidgets/resources/tw.jquery.base/static/javascript/jquery-1.4.2.js"></script> ---------------------------------
Notice that there is an include of jquery 1.7.1 at the top, and an include of jquery 1.4.2 at the bottom. Looking at the URLs, we can also see that the first jquery is coming from tw2, while the second is coming from tw1. The ordering of the includes matters here: all of the jquery.jdMenu includes are being included/attached to the 1.7.1 copy of jQuery. Then, along comes the 1.4.2 copy of jQuery and overrides the variable $ resulting in all the plugins that were loaded becoming inaccessible. Something in your app is including tw1 and tw2. The problem is that tw1 is overriding tw2, and blocking out jdMenu from working. Fix that problem, and the whole problem we've been working on will go away. Mind you, there were still errors to be cleaned up, so I'm glad we reached this point. But the remaining problem, right now, looks to be inside your app. After reviewing tgext.menu, I couldn't even find a way for me to include tw1 code if tw2 code were enabled. -- Michael J. Pedersen My Online Resume: http://www.icelus.org/ -- Google+ http://plus.ly/pedersen Google Talk: [email protected] -- Twitter: pedersentg -- You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears?hl=en.

