I have a jQuery UI Dialog working great on my ASP.NET page:
jQuery(function() { jQuery(\"#dialog\").dialog({ draggable: true, resizable:
I know this is an old question, but for anyone who have the same issue there is a newer and simpler solution: an "appendTo" option has been introduced in jQuery UI 1.10.0
http://api.jqueryui.com/dialog/#option-appendTo
$("#dialog").dialog({ appendTo: "form" .... });