I am developing a WordPress page that uses a jquery.slideto.js navigation system and html anchors. I am using the Contact Form 7 plugin
When pressing the "send" button, the form does not submit, and the included jQuery validation script does not fire. Instead, it just reloads the current page without submitting.
I have included the form on another page without all the extra code and the form DOES send, but none of the jQuery validation works, and it navigates to a new page by appending "#wpcf7-f1-p93-o1" to the current URL
I'm using the following code in my template file
<?php
global $wpcf7_contact_form;
if ( ! ( $wpcf7_contact_form = wpcf7_contact_form( 1 ) ) )
return 'Contact form not found!';
$form = $wpcf7_contact_form->form_html();
echo $form;
?>
The url of the problem page is: www.beattrainsoundsystem.com/home#contact (or click the "Contact" link in the nav)
the url of the working but buggy page is: www.beattrainsoundsystem.com/test
I've disabled all wordpress plugins except for contact form 7, and all scripts except jQuery to narrow down the source of the problem. I do need to continue developing on Monday, so for the next 24 hours (starting Sunday @ 1:48am EST) it will be in debug mode. Thanks so much for your help!
Let me know if you need me to make any changes to the page to help you help me debug.