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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T08:52:24+00:00 2026-05-30T08:52:24+00:00

I am making an AJAX request to a .aspx script & it returns HTML.

  • 0

I am making an AJAX request to a .aspx script & it returns HTML. I am having trouble parsing the returned HTML in JQuery, like I cannot access certain HTML element values or innerHTML.

Can you tell me what I am doing wrong & how I can fix it?

I call a script test.aspx & it returns just this(absolutely nothing else):

<input type="hidden" id="clientIndex" value="4"></input>
<div id="clientContent"> ...some html </div>

When I go to parse this HTML I am unable to access the inputs value or the divs innerHTML BUT I can access the input & div objects fine(they exist).

The code I use is:

  $.ajax(
  {
      type: "POST",
      url: "test.aspx",
      data: "i=" + $(".clientIndexClass:first").val(),
      dataType: "html"
  }).done(function (msg) {
      // NOTE: msg has the correct html so its sending back the right formatted HTML
      var index = $(msg).find("#clientIndex").val();
      var content = $(msg).find("#clientContent").html();
      // ERROR HERE: content is null & index is undefined when it shd be text for both
      console.log("AJAX Response: " + index + ", " + content + ", " + msg);

      $(treadmill).html($(treadmill).html() + content);

      if (index == "-1") {
          console.log("killing intervals coz = -1");
          clearInterval(ele.ajaxInterval);
          clearInterval(ele.slideshowInterval);
      }
  });

In the above code I can find the objects with the ids ‘clientIndex’ & ‘clientContent’ using $(msg).find(“#clientIndex”); BUT I cannot access clientIndex’s value? Ie, $(msg).find(“#clientIndex”).val(); returns null????

  • 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-30T08:52:25+00:00Added an answer on May 30, 2026 at 8:52 am

    In the above code I can find the objects with the ids ‘clientIndex’ & ‘clientContent’ using $(msg).find(“#clientIndex”);

    I’m pretty sure you can’t find these objects like that. .find() will still return a jQuery object, but I’m pretty sure you’ll find that its length is 0 because no elements were found.

    The problem is that .find() looks for a match in the descendants of the selected elements. In your case you have exactly two “top-level” elements with no descendants. The solution is to use the .filter() method instead:

    var $msg = $(msg),
        index = $msg.filter("#clientIndex").val(),
        content = $msg.filter("#clientContent").html();
    

    Note: I’m storing the result of $(msg) in a variable called $msg to save parsing the same thing two lines in a row.

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

Sidebar

Related Questions

I am making an ajax request from a jquery script to one of my
I am making an ajax request using JQuery that looks like this: var data
i am making ajax calls with jquery like this http://pastie.org/860837 and sometimes i get
I'm making an ajax request and I have some problems, this is my jquery
After a page loads, I'm making an AJAX request to pull down an HTML
I am making use of JQuery to fire off an AJAX request. As soon
In my page I am making an ajax request & in success I am
I am making an ajax request to a php page and I cannot for
I make an AJAX request like so using JQuery: $.ajax({ type: GET, url: getvideo.php,
I am making an ajax request using Jquery and everything works fine except the

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.