Question about adding event handler to a TextBox inside a TabContainer

Question about adding event handler to a TextBox inside a TabContainer

I have a TabContainer on my page, and I want to add a keyup handler to the textbox, but somehow I counldn't find the textbox in my jquery function using  $('#TabContainer1_TabPanel1_TextBox1').

How to fix my code to make it work? Here is my code:
  1. <html xmlns="http://www.w3.org/1999/xhtml" >
  2. <head runat="server">
  3.     <title></title>
  4.     <script type="text/javascript" src="js/jquery-1.3.2.min.js" >    
  5.         $(document).ready(function(){
  6.             $('#TabContainer1_TabPanel1_TextBox1').keyup(function(event){
  7.                 alert('Hello!');            
  8.             });        
  9.         });      
  10.     </script>
  11. </head>
  12. <body>
  13.     <form id="form1" runat="server">
  14.     <div>
  15.         <asp:ScriptManager ID="ScriptManager1" runat="server" />        
  16.         <cc1:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="0"             AutoPostBack="false">
  17.             <cc1:TabPanel runat="server" ID="TabPanel1">
  18.                 <ContentTemplate>                          
  19.                     <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
  20.                 </ContentTemplate>  
  21.             </cc1:TabPanel>
  22.         </cc1:TabContainer>
  23.     </div>
  24.     </form>
  25. </body>
  26. </html>