0

Has anyone run into any problems running jQuery UI AutoComplete and jQuery UI iPod like DrillDown Menu?

http://wiki.jqueryui.com/Menu

I realize it's still in a development stage, but curious if anyone else has noted this issue? If you know of a fix that would be awesome as well.

Cheers.

bpeterson76
  • 12,918
  • 5
  • 49
  • 82
Justin
  • 2,502
  • 7
  • 42
  • 77

2 Answers2

0

had the same problem - renaming works:

in fg.menu.js find (right on top after comments)

var allUIMenus = [];
$.fn.menu = function (options) {

and replace "menu" eg. with "ipodmenu" like

var allUIMenus = [];
$.fn.ipodmenu = function (options) {

now you call your menu within your pages like

$('#flyout').ipodmenu({
        content: $('#flyout').next().html(),
        flyOut: true 
    });
reinhard
  • 818
  • 1
  • 10
  • 24
0

I updated the jQuery UI iPod like drilldown menu to have a new function name and it worked great.

Justin
  • 2,502
  • 7
  • 42
  • 77
  • @Justin can you elaborate, post some code perhaps I'm experiencing the same issue – ant Feb 25 '11 at 11:41