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 7841669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T16:08:56+00:00 2026-06-02T16:08:56+00:00

I have a form that inserts data into my DB using AJAX and PHP.

  • 0

I have a form that inserts data into my DB using AJAX and PHP.

AJAX

function insertBill()
{
    $.post('insert_bill.php', $('#insertbill').serialize(), 
        function(data) {
        $('#bills').append(data);
    });
};

Is it possible using jQuery to have my data fade into the #bills div?

  • 1 1 Answer
  • 0 Views
  • 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. Editorial Team
    Editorial Team
    2026-06-02T16:08:57+00:00Added an answer on June 2, 2026 at 4:08 pm

    You can use the following in different variations:

    function insertBill() {
        $.post('insert_bill.php', $('#insertbill').serialize(), 
            function(data) {
            $('#bills').hide().append(data).fadeIn("slow");
        });
    }
    

    You could also have #Bills hidden via css on load of site or you could hide it on submit as follows:

    function insertBill() {
        $.ajax({
            url: 'insert_bill.php',
            data: $('#insertbill').serialize(),
            type: 'post', 
            beforeSend: function(jqXHR, settings) {
                $('#bills').hide();
            },
            success: function(data, textStatus, jqXHR) {
                $('#bills').append(data).fadeIn("slow");
            },
        });
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a form that I am using to post data to mysql. Before
Hi i have a form (X) that inserts data into a mysql table (A)
I have a form that is trying to insert some data into an SQL
I have a Greasemonkey script that dynamically inserts an HTML form into some web
I have a simple form that inserts data in a table on my server.
I have a simple html form and some php that input the POST variables
I have a script im writing that inserts a record into my DB using
I have a Windows form that's generated using code (including buttons and what not).
I have an ajax form that I would like to submit, and the response
I am using cakephp with php, I have table with field id having data

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.