i have this drag and resizeable code which is working fine but loos the setting on postback i want to maintain resizeable..
Please advice
#draggable { width: 150px; height: 150px; padding: 0.5em; }
#draggable { width: 150px; height: 150px; padding: 0.5em; }
#draggable h3 { text-align: center; margin: 0; }
</style>
<script>
$(function () {
$("#draggable").draggable();
});
$(function () {
$("#draggable").resizable();
});
</script>
<div id="draggable" class="ui-widget-content" >
<asp:Panel ID="Panel3" runat="server" Height="100%" >
</asp:Panel>
</div>