Thread group control not working in jQuery 1.4 / jQueryUI 1.8?

I downloaded the menu from the Filament group, which was developed for jQuery 1.3.2. I tried it in jQuery 1.4 and it works, but the rest of the page is messy. Any help would be greatly appreciated. Widgets that do not work are autocomplete and a checkbox.

+4
source share
2 answers

Do not pay attention ... I thought it myself. I am using JQueryUI 1.8.4, which has its own menu function. So, I changed the file fg.menu.js to change the menu function to the menuize function. It worked, and I'm sorry!

+4
source

Dude, you rock! I spent several hours on this problem. the thread group menu is faced with jquery ui autolookup. Just rename the menu call fg.menu.js and it is fixed! THANKS!!

in fg.menu.js: $ .fn.menu = function (options) {will look like this: $ .fn.mymenu = function (options) {

call: $ ('# mybutton'). mymenu ({content: $ ('# myMenuContent'). html (), backLink: false});

+2
source

All Articles