Diego_sf93
Diego_sf93

Reputation: 193

Open an iframe after submit form

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.

Upvotes: 1

Views: 174

Answers (1)

Mathijs Flietstra
Mathijs Flietstra

Reputation: 12974

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'});

Upvotes: 3

Related Questions