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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T03:43:46+00:00 2026-06-14T03:43:46+00:00

I have a page that submits some data via AJAX to another page where

  • 0

I have a page that submits some data via AJAX to another page where it is processed and returned back using json_encode PHP function.

On my original page, in AJAX function, on success I get the data back and put it in alert to test like this:

success: function(data){
   alert(data);
}

The alert outputs in the following format:

{"id":2,"item":"my text string"}

No I need to grab each part of this object and do something with them using jQuery. How do I get them? I tried: data-> but it breaks my JS code… a bit confused.

  • 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-14T03:43:47+00:00Added an answer on June 14, 2026 at 3:43 am

    First, ensure the data you get are parsed as json by jQuery, using the dataType setting.

    Then use data.id or data['id'] to read the id parameter

    $.ajax({
        url: 'someurl',
        dataType: 'json', // precise this
        success: function(data){
           var id = data.id;
           var item = data.item;
           alert(item);
        }
    });
    

    The data['id'] construct is useful when your data are for example {"some name":9}.

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

Sidebar

Related Questions

I have a message submit via AJAX that submits a message, then does some
i have a form that submits some data and gets html back. this html
I have a page with multiple forms that I submit via Ajax POSTs serially.
I have a page that submits data to PayPal, through their standard form fields.(not
I have a View that gets some bits of data via Action methods that
I have a page which submits some data. The submited fields include an ID
Alright, I'm making a website using PHP/HTML, and I have some backend AJAX to
So I have a PHP backend that pulls some data from SQL, let's just
I have a MVC page that loads a Partial via a Ajax.ActionLink, which works,
I have a form that auto submits and updates the same page. I have

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.