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

  • Home
  • SEARCH
  • 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 9224403
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T04:18:39+00:00 2026-06-18T04:18:39+00:00

I am trying to send javascript arrays to a new page with ajax. There

  • 0

I am trying to send javascript arrays to a new page with ajax. There are lots of questions on that on SO, and after scouring the answers I decided to use Ajax like so:

var test = {}; 
test['a1'] = 1;  
test['a2'] = 2;

$(document).ready(function(){
$('#form').submit(function(e){

    $.ajax({
        url: 'newpage.php',
        data: {test:test},
        type: 'post',
        success: function(data) {
        alert(data);
        }
    });
    window.open('newpage.php', 'formres','width=800,height=800,resizeable,scrollbars');
    e.preventDefault();
});

});

It works in that the new window open as it should – but the $_POST-array is empty. What am I doing wrong?

Edit:
I have tried {test:test}, {‘test’:test} and just test. I will try to serialize the data and see what happens. @Louis H: thank you, hadn’t thought of that. I will try with Firebug. Thanks a bunch, all of you!

Edit2: It still bothers me though that the test array didn’t go through. As Kevin B pointed out, the post request should hold the parameters a1 and a2, but it doesn’t. I’ll post again if I find out what I am doing wrong.

  • 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-18T04:18:41+00:00Added an answer on June 18, 2026 at 4:18 am

    try

    $(this).serialize()
    

    for your data. this will serialize the form into correct post-data, which can be used by $_POST

    more information: http://api.jquery.com/serialize/

    and maybe you want to display the result of this post in the popup? then you should open the window in the callback function.

    $('#form').submit(function(e){
    
        $.ajax({
            url: 'newpage.php',
            data: $(this).serialize(),
            type: 'post',
            success: function(data) {
                alert(data);
                window.open('newpage.php', 'formres','width=800,height=800,resizeable,scrollbars');
            }
        });
    
        return false;
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to use JQuery to send a JavaScript Array object over Ajax.
Hi i am trying to send Json via Ajax to PHP using Javascript. The
I am trying to send a javascript array to an external php page, but
Trying to send a complex type between two systems that have the same code
I`m trying to send simple html page with form data to user with GET,
I am trying to upload files using AJAX to ASP.NET. I have this Javascript:
While trying to send a POST request via xmlhttp.open(POST, url, true) (javascript) to the
I'm trying to send a Json array over using an AJAX call to a
I am trying to send an objects array to Spring controller via jQuery AJAX.
I am trying to build a page that will display the next item in

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.