I have several multi-zone cells from the jQuery user interface on a page that works fine in Chrome and Safari but not in Firefox for some reason ... when I load the error console in Firefox, I see:
Error: $.widget is not a function Source File: http://localhost:3000/javascripts/jquery.multiselect.js?1302660373 Line: 563
Any ideas why?
edit: the line itself is located within the open function on the right, where it says "// respond to parameter changes after initialization"
// open the menu open: function(e){ var self = this, button = this.button, menu = this.menu, speed = this.speed, o = this.options; widget: function(){ return this.menu; }, // react to option changes after initialization _setOption: function( key, value ){ var menu = this.menu; switch(key){ case 'header': menu.find('div.ui-multiselect-header')[ value ? 'show' : 'hide' ]();
firefox jquery-ui widget
mtay
source share