show/hide this revision's text 3 improved code readability

You are close to the solution, just getting the wrong object. Should be like this:

jQuery(function() {
   var dlg = jQuery("#dialog").dialog({ 
                        draggable: true, 
                        resizable: true, 
                        show: 'Transfer', 
                        hide: 'Transfer', 
                        width: 320, 
                        autoOpen: false, 
                        minHeight: 10, 
                        minwidth: 10 
          });
  dlg.parent().appendTo(jQuery("form:first"));
});
show/hide this revision's text 2 cleaned up code block

You are close to the solution, just getting the wrong object. Should be like this:

jQuery(function() { var dlg = jQuery("#dialog").dialog({ draggable: true, resizable: true, show: 'Transfer', hide: 'Transfer', width: 320, autoOpen: false, minHeight: 10, minwidth: 10 }); dlg.parent().appendTo(jQuery("form:first")); });

show/hide this revision's text 1

You are close to the solution, just getting the wrong object. Should be like this:

jQuery(function() {
var dlg = jQuery("#dialog").dialog({ draggable: true, resizable: true, show: 'Transfer', hide: 'Transfer', width: 320, autoOpen: false, minHeight: 10, minwidth: 10 });
dlg.parent().appendTo(jQuery("form:first"));
});