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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T22:05:38+00:00 2026-06-17T22:05:38+00:00

The code below works in every browser except for IE (including IE9 on Windows

  • 0

The code below works in every browser except for IE (including IE9 on Windows 7). Please help, what am I missing or doing wrong?

Example: http://jsfiddle.net/KBJwh/

— Update —

Based on some feedback I have updated the code using var and added an alert with a super simple call to the venue’s name. I am still unable to view the data from the JSON on IE.

New Example: http://jsfiddle.net/ZachSchneider/KBJwh/4/

Thank you in advance!

// 4sq API JSON
    var jsonURL = "https://api.foursquare.com/v2/venues/4a9fec80f964a520923d20e3?client_id=FPD2H4NAKX3ABYPEGR2LAMSWV41HC3GSWAEDOCVR00ZDS3LL&client_secret=FCV2G2P3MXZQE2HQYCLHPTMFR03ARE4MWLM34KOX4MXIKCX4&v=20130114";

    // Now let us go and grab that mayor from the API 
    jQuery.getJSON(jsonURL, function (data) {

        // Test Case
            jQuery.each(data.response, function(index, nm){
                    alert(nm.name);
            });

        // Looking through the JSON 
        jQuery.each(data.response.venue.mayor.user, function (i, item) {

            // Neededed 4sq variables 
            var photo = data.response.venue.mayor.user.photo.suffix,
            firstName = data.response.venue.mayor.user.firstName,
            lastName = data.response.venue.mayor.user.lastName,
            checkins = data.response.venue.mayor.count;

            // Content to append into HTML 
            currentMayor = '<img src="https://is1.4sqi.net/userpix_thumbs/' + photo + '"  width="55" height="55" /><p>Congrats, <span class="currentMayor">' + firstName + ' ' + lastName + ' ' + checkins + '</span> check-ins in the last 60 days</p>';
        });

        jQuery(currentMayor).prependTo("#myDIV");
    });
  • 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-17T22:05:39+00:00Added an answer on June 17, 2026 at 10:05 pm

    I went with the .ajax() method which offers fail and success attributes.

    // 4sq API JSON
        var jsonURL = "https://api.foursquare.com/v2/venues/4a9fec80f964a520923d20e3?client_id=FPD2H4NAKX3ABYPEGR2LAMSWV41HC3GSWAEDOCVR00ZDS3LL&client_secret=FCV2G2P3MXZQE2HQYCLHPTMFR03ARE4MWLM34KOX4MXIKCX4&v=20130114";
    var request = jQuery.ajax({
        url: jsonURL,
        context: document.body
    });
    // Yay! JSON is working 
    request.success(function () {
        // Now let us go and grab that mayor from the API 
        jQuery.getJSON(jsonURL, function (data) {
    
            // Looking through the JSON 
            jQuery.each(data.response.venue.mayor.user, function (i, item) {
    
                // Neededed 4sq variables 
                var photo = data.response.venue.mayor.user.photo.suffix,
                    firstName = data.response.venue.mayor.user.firstName,
                    lastName = data.response.venue.mayor.user.lastName,
                    checkins = data.response.venue.mayor.count;
    
    
                // Content to append into HTML 
                currentMayor = '<img src="https://is1.4sqi.net/userpix_thumbs/' + photo + '"  width="55" height="55" /><p>Congrats, <span class="currentMayor">' + firstName + ' ' + lastName + ' ' + checkins + '</span> check-ins in the last 60 days</p>';
            });
            jQuery(currentMayor).prependTo("#myDIV");
        });
    });
    // Foursquare failed or you are just using IE 
    request.fail(function () {
        jQuery("<div>placeholder copy for IE or broken API</div>").prependTo("#myDIV");
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The code line $('#iframe-youtube').css(opacity, 0); below works on every browser except Safari. The rest
the code below works in Windows Phone 7 private void ShowTime() { txtTime.Text =
The code below works great except the email has all the text on one
This code below works in all web browsers except IE: <input type="text" name="passwordLogin" value="Password"
The code below works well right now; however, it's serially executed. I'd like to
The code below works well but grabs only the UIView which is VISIBLE on
The code below works fine. But it seem clunky. How would you combine the
the code below works fine but it takes an absolute age to run. How
The code below works great. I have a MySQL database that contains book titles
The code below works nicely. Each title in the MySQL table submission is printed

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.