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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T19:42:29+00:00 2026-06-05T19:42:29+00:00

I have a big HTML-string containing multiple child-nodes. Is it possible to construct a

  • 0

I have a big HTML-string containing multiple child-nodes.

Is it possible to construct a jQuery DOM object using this string?

I’ve tried $(string) but it only returns an array containing all the individual nodes.

Imtrying to get an element which i can use the .find() function on.

  • 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-05T19:42:31+00:00Added an answer on June 5, 2026 at 7:42 pm

    Update:

    From jQuery 1.8, we can use $.parseHTML, which will parse the HTML string to an array of DOM nodes. eg:

    var dom_nodes = $($.parseHTML('<div><input type="text" value="val" /></div>'));
    
    alert( dom_nodes.find('input').val() );
    

    DEMO


    var string = '<div><input type="text" value="val" /></div>';
    
    $('<div/>').html(string).contents();
    

    DEMO

    What’s happening in this code:

    • $('<div/>') is a fake <div> that does not exist in the DOM
    • $('<div/>').html(string) appends string within that fake <div> as children
    • .contents() retrieves the children of that fake <div> as a jQuery object

    If you want to make .find() work then try this:

    var string = '<div><input type="text" value="val" /></div>',
        object = $('<div/>').html(string).contents();
    
    alert( object.find('input').val() );
    

    DEMO

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

Sidebar

Related Questions

I have a big object that I resorted to serializing using @Html.Serialize() : [Serializable]
so I have this HTML table with a bunch of big numbers in it
I have a big json object containing cell data from a sample spreadsheet that
I have a Big html in String variable and I want to get contents
something driver me crazy here i have a big HTML template which i can't
I have quite big document in html format that generated from Microsoft Word. It
I have a big chunk of HTML which is a template for some data
I have a big problem. I want to extract text from html table that
I am Looking for html string jquery parser ( parse <a> links and <img>
I have my own html helper extension, which I use this way <%=Html.LocalizableLabelFor(model =>

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.