GreyCells suggests this workaround:
[quote]
My workaround was to put a hover event on the select list that
destroyed
the resizable (disable din't work), then recreated it on blur:
setMyDivResizable(); //Sets up the div.resizable();
if ( jQuery.browser.safari ) {
jQuery('#DodgySelect').hover(function() {
jQuery('#MyResizableDiv').resizable('destroy');
}, function() {
setMyDivResizable();
}
);
}
[/quote]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---