Using Firebug, I've noticed that the HTML you're including inside the tab has all the DOCTYPE <html><head> etc. included. Using tabs, you're injecting HTML into your existing HTML (tabs2.php). You cannot include such elements. Edit your formvalidator.html file so it looks like:
<!-- you don't have to include the jQuery library again because it exists on the main tabs page --> <script type="text/javascript" src="http://dev.jquery.com/view/trunk/ plugins/validate/jquery.validate .js"></script> <form> ... </form> <!-- done --> On Feb 3, 7:29 am, garrettgjb <[email protected]> wrote: > The form validation never works when I load it on a tab: > > I have a form validator running fine > here:http://gbanker.com/test/formvalidator.html > And I have my tabs here:http://gbanker.com/test/tabs2.php(the form > validator is loaded on the first tab) > > Any help on getting the validator working on a tab is greatly > appreciated. Thank you. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en -~----------~----~----~----~------~----~------~--~---
