1

I have a form and I want that when it validate all the information and all its OK open a Iframe with fancybox saying:

"Thanks for register... "

I test this in the jquery that manage the form:

$.fancybox( {href : 'http://www.google.com.uy', title : 'Lorem lipsum'} );

PD: That url is to test, but nothing happend

I´m using codeigniter and php.

4

1 回答 1

3

I think your problem might be that you are not specifying the content type. Which should be iframe in your case.

$.fancybox({href : 'http://www.google.com.uy', title : 'Lorem lipsum', type: 'iframe'});
于 2013-05-02T20:44:25.853 回答