On Aug 25, 2:47 pm, Josiah Kiehl <
bluep...@gmail.com> wrote:
> You're going to have to submit the for via Ajax.
>
> Remove the action from your form and set up your button to do an ajax call
> onclick:
>
> onclick="submitContactForm(); return false;"
>
> function submitContactForm() {
> $.post('process.php', { field1: $('#field1').val(), ... fieldn:
> $('#fieldn').val() }, function(data){ $.facebox(data); }
> });
>