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

The Archive Base Latest Questions

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

I’ve got a simple $.ajax request that I am trying to fetch some HTML

  • 0

I’ve got a simple $.ajax request that I am trying to fetch some HTML content with in my ASP.Net MVC app.

        // Load the claim table
    function GetClaimTable() {
        $.ajax({
            type: "GET",
            url: "claimtable",
            data: {},
            datafilter: null,
            dataType:'text',
            success: function(msg){
                alert(msg);
                $("#claimTable").html(msg.responseText);
            },
            error: function(msg, sdf, sdd) {
                alert(sdf);
                alert(sdd);
            }
        });

But I am getting a parseerror instead. The call is successful because I see 200 OK in firefox and the error has XmlHttpRequest object which has the correct data in the responseText property.

The code works well in IE but fails in firefox. The url claimtable is a simple MVC Action.

I read here jQuery / ASP MVC — parsererror in "$.ajax" calls that this is due to a typo which was solved in jquery 1.3.2. But I have 1.3.2 and I am getting this error.

Any help?

  • 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-12T13:57:43+00:00Added an answer on May 12, 2026 at 1:57 pm

    I finally found out why this was happening. The reason was ajaxSetup that I had written to process my jQuery webservice requests more smoothly. Apparently something was wrong even though I was overriding the settings in my new function and the parsererror occurred. I deleted ajaxSetup and now things are working well.

    This was the function that destroyed 3 hours of my life.

    $.ajaxSetup({
        type: "POST",
        cache:false,
        contentType:"application/json;charset=utf-8",
        data:"{}",
        dataFilter: function(data) {
            var msg;
    
            if (typeof (JSON) !== 'undefined' && 
                typeof (JSON.parse) === 'function')
              msg = JSON.parse(data);
            else
              msg = eval('(' + data + ')');
    
            if (msg.hasOwnProperty('d'))
              return msg.d;
            else
              return msg;
            }
    });
    

    Looks pretty innocent. eh?

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

Sidebar

Related Questions

No related questions found

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.