Sorry for the late reply.

It works fine for me using FF 17.0.1 + FB 1.11.1 on WinXP. Which Firefox 
and Firebug version do you use?
Do you see any errors inside the Firefox Error Console (Ctrl+Shift+J)?
Does it work for you when you try it on a fresh Firefox 
profile<https://getfirebug.com/wiki/index.php/Install_Firebug_into_a_clean_profile>
?

Merry Christmas!

Sebastian

On Friday, December 14, 2012 5:07:40 PM UTC+1, lisarush wrote:
>
> Using the simple example of a jQuery-UI Dialog, as found on page:  
> http://api.jqueryui.com/dialog/  at the bottom,
> the "resize" and "drag" functionality do not work (events start & 
> resize/move, but never stop) if Firebug is enabled.
> Disable Firebug & they work.
>
> Following is a copy of the example that does not work with Firebug:
>
> <!doctype html>
> <html lang="en">
> <head>
>     <meta charset="utf-8">
>     <title>dialog demo</title>
>     <link rel="stylesheet" href="
> http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css";>
>     <script src="http://code.jquery.com/jquery-1.8.3.js";></script>
>     <script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js";></script>
> </head>
> <body>
>  
> <button id="opener">open the dialog</button>
> <div id="dialog" title="Dialog Title">I'm a dialog</div>
>  
> <script>
> $( "#dialog" ).dialog({ autoOpen: false });
> $( "#opener" ).click(function() {
>     $( "#dialog" ).dialog( "open" );
> });
> </script>
>  
> </body>
> </html>
>

-- 
You received this message because you are subscribed to the Google
Groups "Firebug" 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
https://groups.google.com/forum/#!forum/firebug

Reply via email to