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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T13:47:42+00:00 2026-05-24T13:47:42+00:00

Hi I am still learning this JSON stuff… I think I found a valid

  • 0

Hi I am still learning this JSON stuff…

I think I found a valid JSON:

http://www.nfl.com/liveupdate/scorestrip/ss.json

Problem is I am not sure how I can parse this using AJAX?

Is this possible to do? I have also heard of MooTools what is the difference?

Also here is some code I have just to play around but doesn’t seem to work:

$.ajax({
    type: "GET",
    url: "http://www.nfl.com/liveupdate/scorestrip/ss.json",
    dataType: "json",
    success: function(data) {
        // Interpret response
       for (var i = 0; i < data.gms.length; i++) {
        document.write("Day: " + data.gms[i][0]);
        document.write("<br/>");
        document.write("Time: " + data.gms[i][1]);
        document.write("<br/><br/>");
    }
    }
});
  • 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-05-24T13:47:43+00:00Added an answer on May 24, 2026 at 1:47 pm

    JSON stands for “JavaScript Object Notation”. AJAX stands for “Asynchronous Javascript And XML”. MooTools is a crossbrowser javascript framework which provides developers an object oriented workflow with javascript.

    Don’t confuse apples with peas. All three technologies are often used together, but are different things. JSON is a notation to describe javascript objects, arrays and literals; AJAX is for requesting and retrieving documents (including documents in JSON format) and MooTools can be used to make AJAX calls (probably retrieving a document in JSON format – or an XML fragment).

    JSON is pure javascript, there is no need to “parse” it in any way, the javascript interpreter will do that for you. AJAX is often used to describe XMLHttpRequests: http requests originating from javascript, often retrieving JSON or XML/HTML data. MooTools allows you with relatively little code to make use of the XMLHttpRequest feature trough its Request class:

    var request = new Request.JSON({
      url: 'http://www.nfl.com/liveupdate/scorestrip/ss.json',
    
      onRequest: function(){
        alert('We are loading now ...'); // abuse alert(), quite annoying and so 1990
      },
    
      onComplete: function(jsonObj) {
        // jsonObj is the retrieved JSON. Access it like you would normal javascript objects and arrays
      }
    
    }).send();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Still learning Objective-C / iPhone SDK here. I think I know why this wasn't
Still learning this jQuery stuff.... I like this ajax page loader; it works for
Still learning this stuff on WPF, themes, derivations, etc. I understand basics on the
I'm still learning this stuff, but for the most part, my understanding is that
I'm still learning some of this c# stuff, and I couldn't find an answer
I am still learning much about SQL queries but found myself stuck on this.
I'm still learning ASP.NET and I often see code like this throughout parts of
I'm still learning about REST and, in my test, came up with this scenario
This is going to sound like a silly question, but I'm still learning C,
I'm learning C++ and I'm still confused about this. What are the implications of

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.