Need help in javascript

Posted by raja on Stack Overflow See other posts from Stack Overflow or by raja
Published on 2010-06-09T15:49:04Z Indexed on 2010/06/09 15:52 UTC
Read the original article Hit count: 149

Filed under:

Hi: I am getting the error for the below code. Please help me out.

   <html><head>
   <title>(Type a title for your page here)</title>

    <script language=JavaScript>


    function check_length(my_formm,fieldName)
     {
 alert(fieldName); 
alert(document.my_formm.fieldName.value); 
   }


   </script>

  </head>

   <body>
  <form name=my_form method=post>
  <input type="text" onKeyPress=checkCompanyName(); onChange=check_length("my_form","my_text"); name=my_text rows=4 cols=30 value="">
    <br> 
   <input size=1 value=50 name=text_num> Characters Left
</form>

      </body>
     </html> 

© Stack Overflow or respective owner

Related posts about JavaScript