I know this is like the "hello world" of validate...can anyone see the
issue?  This is my first time using jquery and validate so my
troubleshooting skills are not there yet.

On Wed, Oct 22, 2008 at 10:11 AM, whitewaterbug <[EMAIL PROTECTED]>wrote:

> Thanks for the suggestions.  I updated the form per suggestions....but it
> still isn't doing the validation :(  Here is the form now:
>
> ----------------------
> <html>
> <head>
>     <script type="text/javascript" src="jquery-1.2.6.min.js"></script>
>     <script type="text/javascript" src="jquery.form.js"></script>
>     <script type="text/javascript" src="jquery.validate.js"></script>
>     <script type="text/javascript" src="jquery.metadata.js"></script>
>
>     <script type="text/javascript">
>         // wait for the DOM to be loaded
>         $(document).ready(function() {
>             // bind 'myForm' and provide a simple callback function
>             //$('#myForm').ajaxForm(function() {
>             //    alert("Thank you for your comment!");
>             $("#myForm").validate();
>             });
>     </script>
> </head>
> <body>
>
> <FORM name="myForm2" id="myform" ACTION="
> http://www.cs.tut.fi/cgi-bin/run/~jkorpela/echo.cgi<http://www.cs.tut.fi/cgi-bin/run/%7Ejkorpela/echo.cgi>
> "
> METHOD="POST">
>
> <P>
> Type something:<BR>
> <TEXTAREA ROWS=5 COLS=72 NAME="Comments">
> This is
> some text
> in several lines.
> </TEXTAREA>
> <p>
> <INPUT TYPE="checkbox" NAME="box" VALUE="yes">Check me!
> <P>
> email: <INPUT Type="text" name="myEmail" class="required email">
> <INPUT TYPE="HIDDEN" NAME="hiddenField" VALUE="something">
>
> <INPUT name="mysubmit" TYPE="SUBMIT" VALUE="Send">
> </FORM>
> </body>
> </html>
>
>
>

Reply via email to