Solution 2:
Change line 33 in jquery.ui.selectmenu.js from:
var selectmenuId = this.element.uniqueId().attr( "id" );
to:
var selectmenuId = this.element.attr( 'id' ) || 'ui-selectmenu-' + Math.random().toString( 16 ).slice( 2, 10 );
This will hopefully work.
Post a Comment for "Error: This.element.uniqueid Is Not A Function. Jquery Ui. Anyone Seen This Before?"