phpmady Posted April 14, 2010 Share Posted April 14, 2010 Hi, I am getting the validation undefined error, here is the below code am using class of prototype.. what am doing weong.. <form action="login.php?action=login" method="post" name="log" id="log"> <div class="login_block"> <div class="login_textbox_div"> <input type="text" name="email" id="email" class="index_login_button login_textbox" size="18" /> </div> <div class="login_textbox_div"> <input type="password" name="pass" id="password" class="login_textbox" size="18" /> </div> <div class="submit_button"><a href="view.php?do=reg"><img src="images/register.png"></a> <img src="images/login.png" style="cursor: hand;" onclick="submit();"></div> <div class="forgot_password" style="vertical-align:top; "><a href="view.php?do=forget_pass" style="text-decoration:none; color:brown;">Forgot Password?</a></div> </div> <script type="text/javascript"> function formCallback(result, form) { window.status = "validation callback for form '" + form.id + "': result = " + result; } var valid = new Validation('log', {immediate : true, onFormValidate : formCallback}); </script> </form> Quote Link to comment Share on other sites More sharing options...
Ken2k7 Posted April 14, 2010 Share Posted April 14, 2010 The object you passed into the function formCallback doesn't have an id member data so when you call form.id, it's undefined. Quote Link to comment Share on other sites More sharing options...
phpmady Posted April 14, 2010 Author Share Posted April 14, 2010 The object you passed into the function formCallback doesn't have an id member data so when you call form.id, it's undefined. Hi, Please i couldnt understand can u pls help me, how to get it right Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.