Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 141875
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T07:50:48+00:00 2026-05-11T07:50:48+00:00

I have a contact form open in thickbox i want when user click on

  • 0

I have a contact form open in thickbox i want when user click on submit form data submit to my php that will process that data and show sucessfull msg back to thickbox. php page is called but how i will get form data?

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T07:50:49+00:00Added an answer on May 11, 2026 at 7:50 am

    First use thickbox’s iframe feature to load the form in the thickbox. Make sure you have jquery and thickbox loaded by putting this in the HTML head of your document:

    <script type='text/javascript' src='/javascripts/jquery.js'></script> <script type='text/javascript' src='/javascripts/thickbox.js'></script> <link href='/stylesheets/thickbox.css' rel='stylesheet' type='text/css' /> 

    Then put a link on the page the loads the contact us form in the iframe:

    <a href='/contact_us_form.php?KeepThis=true&TB_iframe=true&height=400&width=600&modal=true' class='thickbox' title='Contact Us'>Contact Us</a> 

    Your form should have markup that has this basic structure:

    <div id='content'>   <form id='contact_us' action='/contact_us.php' method='POST'>      ...   </form> </div> 

    Now use jQuery to your form via AJAX. Put this in the head of the HTML document:

    <script type='text/javascript'>   jQuery(function($){     $('#contact_us').submit(function(){        $.post($(this).attr('action'), function(html) {          $('#content').html(html)       })       return false     })   }) </script> 

    What this does is:

    1. Adds a function to the form to be called when the form is submitted. It returns false to prevent the default behavior of a form submitting from happen.

    2. This submit function will do an AJAX post, using the action of the form, which you set to contact_us.php.

    3. Finally, this will take whatever content contact_us.php returns and replace the content of the div with the id content with that.

    So make your contact_us.php script actually send the email or create a database record, whatever it does, and then have it return this HTML:

    <p>Thank you for your submission!</p>  <p><a href='#' onclick='window.parent.tb_remove(); return false'>Continue</a> 

    Obviously this can be anything you want, whatever message you want the end user to see. The link shows you how to make the thickbox window go away.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have a PHP contact form that submits data, and an email...: <?php $dbh=mysql_connect
I have a contact form that can be hidden using .slideToggle() but I want
The basics: I have a contact form that uses php to validate the forms.
I have a simple contact form with Subject and Message that I want to
I have a contact form i want to use Ajax for. My contact.php script
I have a contact us form that uses Ajax (i.e. relies on asynchronous requests).
I have an Ajax contact form that links to a jquery file but for
I have a small contact form: <form method=post action=contact.php name=contactform id=contactform> <fieldset> <legend>Please fill
I have a simple contact form that works in every browser, except IE. It
I have a contact form that sends to my email and I recently got

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.