Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a form generated by Contact 7 (wordpress plugin).

When displayed as a discrete page and submitted the validation proceeds in-situ and any errors reported back without a full page refresh. That is the expected and desired behaviour, except that I wish to have this work the same when the form is first loaded into an overlay.

However, while I can load the discrete page that contains the form into the overlay, I can't see how to get it to submit and validate through the same overlay... what happens is that the url of the form page gets loaded into the browser, rather than into the overlay of the page from which the form is being submitted.

The js that is catching the initial link to the form is:

    $(function() {
            // if the function argument is given to overlay,
            // it is assumed to be the onBeforeLoad event listener
            $("a[rel]").overlay({

                    mask: '#cccccc',
                    effect: 'apple',

                    onBeforeLoad: function() {

                            // grab wrapper element inside content
                            var wrap = this.getOverlay().find(".contentWrap");

                            // load the page specified in the trigger
                            wrap.load(this.getTrigger().attr("href"));
                    }
            });
    });

This catches the href of the link and sends it to the overlay... In essence I want to catch the 'action' of the form and redirect it, and the contents POST method also to the overlay.

Is this possible?

Some pointers would be helpful.

Cheers

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.