Tuesday, April 29, 2014

access textbox text in code behind in jquery popup

<script type="text/javascript">
        function ShowPopup() {

            $("#dialog-modal").dialog({

                title: "Change Default Password For Client",
                height: 230,
                width: 400,
                appendTo: "form",
                buttons: {
                    Close: function () {
                        $(this).dialog('close');
                    }
                },
                modal: true
            });
        };      
    </script>

//Use    appendTo: "form" 

No comments:

Post a Comment