Tengo un formulario con jquery típico, y me gustaría que al finalizar la acción de send abriese un iframe con fancybox.
Código de jquery:
Código Javascript:
Ver original
$(document).ready(function() { $('#apk_voto').hide(); $().ajaxStart(function() { $('#nuevo_voto').show(); }).ajaxStop(function() { $('#nuevo_voto').hide(); $('#apk_voto').show('slow'); }); $('#form, #fat, #form_voto').submit(function() { $.ajax({ type: 'POST', url: $(this).attr('action'), data: $(this).serialize(), success: function(data) { $('#nuevo_voto').fadeOut('fast'); $('#apk_voto').fadeIn('slow')(); } }) return false; }); })
Y el del fancy:
Código Javascript:
Ver original
$("#form").fancybox({ 'width' : '50%', 'height' : '30%', 'autoScale' : true, 'transitionIn' : 'elastic', 'transitionOut' : 'over', 'type' : 'iframe' });
Espero que me puedan aconsejar de cómo hacerlo
Un saludo