Get Panel data for JQUERY UI tabs......

Get Panel data for JQUERY UI tabs......

I am using JQUERY UI tabs for implementing a web based "C Program editor". I have added Textarea into the Panel template like this.....

tabTemplate: '<li><a href="#{href}">#{label}</a> <span class="ui-icon ui-icon-close">Remove Tab</span></li>',
panelTemplate: '<textarea class="text"></textarea>',

The textarea is editable and i can retrieve the file data from the server and load into this textarea. All tabs are working fine. But now i want to save the modified file back to the server.

But I am not getting the contents from the textarea... can anyone help me???