show/hide this revision's text 2 deleted 127 characters in body

$('#divname').parent().appendTo($("form:first"));

**$('#divname').parent().appendTo($("form:first"));**

For me using this cose code solved my problem and work in every browser. IE7, FF3 , Chrome. I start to love JQUERY... it's a cool framework

I have tested with partial render too, exactly what I was looking for. GREAT!!

<script type="text/javascript">

        function openModalDiv(divname) {
            $('#' + divname).dialog({ autoOpen: false, bgiframe: true, modal: true });
            $('#' + divname).dialog('open');
            $('#' + divname).parent().appendTo($("form:first"));
        }

        function closeModalDiv(divname) {
            $('#' + divname).dialog('close');
        }
    </script>
...
...
<input id="Button1" type="button" value="Open 1" onclick="javascript:openModalDiv('Div1');" />
...
...
<div id="Div1" title="Basic dialog" >
    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
       <ContentTemplate>
          postback test<br />
          <asp:Button ID="but_OK" runat="server" Text="Send request" /><br />
          <asp:TextBox ID="tb_send" runat="server"></asp:TextBox><br />
          <asp:Label ID="lbl_result" runat="server" Text="prova" BackColor="#ff0000></asp:Label>
        </ContentTemplate>
    <asp:UpdatePanel>
    <input id="Button2" type="button" value="cancel" onclick="javascript:closeModalDiv('Div1');" />
</div>
show/hide this revision's text 1

$('#divname').parent().appendTo($("form:first"));

For me using this cose solved my problem and work in every browser. IE7, FF3 , Chrome. I start to love JQUERY... it's a cool framework