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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T18:23:39+00:00 2026-06-15T18:23:39+00:00

I currently use $.get() to fetch HTML markup from another file. How can I

  • 0

I currently use $.get() to fetch HTML markup from another file. How can I add the results to the current jQuery set of matched elements for the current DOM?

I thought add() would do the trick, but it doesn’t. For instance, this doesn’t work:

$.get('file.html', function(data) {
    $('body').add(data)
});

But ideally, if file.html has, say, ”, i’d like to be able to use #result like it was in the current set of elements, with $(‘#result’).html(..).

One thing I could do, is use $.load(‘file.html #result’)… but i’d have to do this multiple times as i’ll be working with multiple elements.

My thought then was perhaps to use

sub$ = jQuery.sub();

and add the returned string of HTML from $.get to it, but don’t know if it’s possible.

  • 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-15T18:23:40+00:00Added an answer on June 15, 2026 at 6:23 pm

    You can turn the whole html response into a jQuery object without inserting it into the DOM. This allows you to manipulate or look for specific elements or values and do different things with different parts of the response.

    Example:

    $.get('file.html', function(data) {
        var $response=$(data);
        var myButton=$response.find('button');
    
         var someDiv= $response.find('#someDiv').css('color','red')
         $('#someForm').append( myButton)
    
         $('body').append( someDiv)
    });
    

    You can also check for certain elements existence, or certain values within the response and process the response accordingly.

    $.get('file.html', function(data) {
       var $response=$(data);
    
        if( $response.find('#someDiv').length){
          doThis();
        }else{
           doThat();
        }
    
    })
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I get the current selected row for UIPicker? I want to use
I'm currently building a REST API. All GET methods currently use JSON as response
I'm trying to get a list of comports that are currently in use to
Currently, when I get an error on an erb template (for use with HTTPServer/cgi)
I want to get into Erlang programming, specifically some yaws stuff. (Currently, I use
I need to use javascript to get the itemid of the current page in
How would I get the system's current language and use that for the ResourceBundle?
I use the following to get, for instance, the header of the current page;
I am trying to get current running context in android, I tried to use:
I am currently using this script to get new data every second from record_count.php

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.