October 31, 201213 yr Hey I am sorting my contact form and when i try to send it, it comes up with "No JSON response after 5 seconds. Please refresh." any ideas my tags are <script src="js/jquery.1.7.1.min.js" type="text/javascript"></script> <script src="js/contact_form.min.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function(){ $("#contact_form-form").contactify({ loadingImage: '/img/loading.gif', scriptUrl: '/contact.php' }); }); </script> html is <div id="contact_form"> <form action="contact.php" id="contact_form-form" method="get"> <fieldset> <div> <label><span class="required">*</span> Name:</label> <input type="text" name="name" class="text" title="Your Name" value=""> <br class="clear"> </div> <div> <label><span class="required">*</span> Email:</label> <input type="text" name="email" class="text" title="Your Email" value=""> <br class="clear"> </div> <div> <label><span class="required">*</span> Phone:</label> <input type="text" name="phone" class="text" title="Your Phone" value=""> <br class="clear"> </div> <div> <label><span class="required">*</span> Your Comment:</label> <textarea name="comment" id="contact_form-comment" title="Your Comment..."></textarea> <br class="clear"> </div> <div> <label><span class="required">*</span> Human Test: 2 + 3 =</label> <input type="text" name="antispam" class="short text" title="Answer to question"> <br class="clear"> </div> <div> <input type="submit" value="Submit" title="Submit" class="submit" id="contact_form-submit"> <br class="clear"> </div> </fieldset> </form> </div>
Create an account or sign in to comment