I am using a jQuery UI buttonset (based on a few radio buttons.) Everything works pretty fine except sometimes when you click on one of the buttons nothing happens (just as if y
$( "#radio" ).buttonset(); $( "#radio" ).find("label").unbind("mouseup");
because in jquery source code there is:
.bind( "mouseup" + this.eventNamespace, function( event ) { if ( options.disabled ) {return; } if ( startXPos !== event.pageX || startYPos !== event.pageY ) { clickDragged = true; } }