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> Link to comment https://forums.phpfreaks.com/topic/198546-validation-undefined-error/ 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. Link to comment https://forums.phpfreaks.com/topic/198546-validation-undefined-error/#findComment-1041868 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 Link to comment https://forums.phpfreaks.com/topic/198546-validation-undefined-error/#findComment-1041874 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.