Home › Forums › Jquery Validation for Contact Form 7 › Response tag not displaying
- This topic has 5 replies, 2 voices, and was last updated 5 years, 9 months ago by
Steve.
- AuthorPosts
- April 15, 2015 at 10:59 am #4170
Steve
GuestHi
Is there a way to make the response tag display as well as individual input errors?
Thanks
April 15, 2015 at 4:26 pm #4175Dinesh
KeymasterHi Steve,
What does response tag means ?
Thanks
April 16, 2015 at 1:36 pm #4182Steve
GuestThe response tag is the CF7 error block usually added to forms using [response] as seen here http://contactform7.com/locating-response-message-box-anywhere/
However, when using your plugin the response tag is not displayed when an error is found. Is there away to force it to display along with the label errors for each input?
April 16, 2015 at 4:31 pm #4188Dinesh
KeymasterHi Steve,
Actually, our plugin adds 1 extra validation layer above the validation of Contact Form 7. So, we don’t hide/remove the Response tag. CF7 response tag is only shown once the form is submitted via ajax. But our plugin doesn’t allows to submit the form till our validation rules passes.
We currently don’t have response tag for validation error of our plugin. We just use error label.
Thanks
April 19, 2015 at 9:04 am #4200Steve
GuestOk that figures, thanks.
In that case, I’m using a drop down to populate another input, that input is required, but the select is not. How can I trigger the verification on the dropdown selection for the input it populates? (obviously the dropdown select is NOT required, but gives the user a small selection of possible options, but they are allowed to enter their own option if its missing)
Currently, if a user selects a dropdown option, no verification happens until the form is submitted.
Can I link the two input but only make one required?
April 19, 2015 at 9:29 am #4202Steve
GuestActually, answered it myself using…
$("#sellectBox").bind("change", function () { $('#SELLECTION').valid(); // trigger validation on another field });
Thanks
- AuthorPosts
- The topic ‘Response tag not displaying’ is closed to new replies.