Access nested ListView textbox

Access nested ListView textbox

Will someone show me how to access a TextBox inside of nested asp.net ListView control? Here's my code:

  1. <script type="text/javascript">
  2.         $(document).ready(function () {
  3.             var jObject = $('.expanding');
  4.             if (jObject.length) {
  5.                 jObject.focus(function () {
  6.                     $(this).animate({ width: 100 }, 500);
  7.                     alert("got here");
  8.                 });
  9.                 jObject.focusOut(function () {
  10.                     $(this).animate({ width: 20 }, 500);
  11.                     alert("second");
  12.                 });
  13.             }
  14.         });
  15.         $(function () {
  16.             $("textarea[id$=txtInsertDefinition]").blur(function () {
  17.                 //$("#commands").hide()
  18.                 $(this).next().hide("normal");
  19.                 alert("got in first");
  20.             });
  21.             $("textarea[id$=txtInsertDefinition]").focus(function () {
  22.                 $(this).next().show("normal");
  23.                 //$("#commands").next().show("normal");
  24.                 alert("got in second");
  25.             });
  26.         });
  27.     </script>
Right now, I didn't even get the alert message. So, there is something definitely wrong here.