Código Javascript:
Ver original
<script type="text/javascript"> document.contactform.browser_check.value = "true"; //sets the hidden input(browser_check) value as true if the javascript is enabled. $("#submit").click(function(){ $('#result').html('<img src="http://www.tutorialstag.com/examples/images/loader.gif" class="loading-img" alt="loader image">').fadeIn(); var input_data = $('#form').serialize(); $.ajax({ type: "POST", url: "<?php echo "http://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; ?>", data: input_data, success: function(msg){ $('.loading-img').remove(); //Removing the loader image because the validation is finished $('<div class="message">').html(msg).appendTo('div#result').hide().fadeIn('slow'); //Appending the output of the php validation in the html div } }); return false; }); </script>
Lo que quiero es mostrarlo en un recuadro por medio del jQuery Fancybox, porque este plugin hace que se abran recuadros por medio de links. La cosa es como pasar ese link al recuadro. Este es el link que tengo que usar:
<a id="iframe" href="individual.php">Ver más</a></td>