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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T20:34:56+00:00 2026-05-14T20:34:56+00:00

I want to use document.createDocumentFragment() to create an optimized collection of HTML elements that

  • 0

I want to use document.createDocumentFragment() to create an optimized collection of HTML elements that contain “.data” coming from jQuery (v 1.4.2), but I’m kind of stuck on how to get the data to surface from the HTML elements.

Here’s my code:


var genres_html = document.createDocumentFragment();
$(xmlData).find('genres').each(function(i, node) {
    var genre = document.createElement('a');
    $(genre).addClass('button')
        .attr('href', 'javascript:void(0)')
        .html( $(node).find('genreName:first').text() )
        .data('genreData', { id: $(node).find('genreID:first').text() });
    genres_html.appendChild( genre.cloneNode(true) );
});

$('#list').html(genres_html);

// error: $('#list a:first').data('genreData') is null
alert($('#list a:first').data('genreData').id);

What am I doing wrong here? I suspect it’s probably something with .cloneNode() not carrying over the data when the element is appended to the documentFragment. Sometimes there are tons of rows so I want to keep things pretty optimized, speed-wise.

Thanks!

  • 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-14T20:34:56+00:00Added an answer on May 14, 2026 at 8:34 pm

    You’re running cloneNode on a jQuery object. You start off with native API, then convert it to a jQuery object, then switch back.

    I suppose you could do:

    genres_html.appendChild( genre.get(0).cloneNode(true) );
    

    But then I suspect you would lose your data.


    EDIT:

    If you want jQuery, instead of creating a fragment, try creating an empty jQuery object, then pushing each genre into it:

    var genres_html = $();
    ...
    genres_html.push( genre );
    

    EDIT:

    Give this a try. I’m no DOM expert, but it may work for you.

    var genres_html = document.createDocumentFragment();
    $(xmlData).find('genres').each(function(i, node) {
        var genre = document.createElement('a');
        genre.setAttribute('class','button');
        genre.setAttribute('href', 'javascript:void(0)');
        var $node = $(node);
        genre.setAttribute('genreData', $node.find('genreID:first').text() );
        genre.innerHTML = $node.find('genreName:first').text();
        genres_html.appendChild( genre.cloneNode(true) );   // Not sure why you would need to make a clone??
    });
    
    var list = document.getElementById('list');
    list.appendChild(genres_html);
    
    // error: $('#list a:first').data('genreData') is null
    alert($('#list a:first').attr('genreData'));
    

    Let me know if it works.

    EDIT: Changed my error with innerHTML

    EDIT2: Using native innerHTML to append to #list

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

Sidebar

Related Questions

I want to use data binding with an XML document to populate a simple
I have an XML document with un-namespaced elements, and I want to use XSLT
I want to use the Publish.GacRemove function to remove an assembly from GAC. However,
I want to use the MultipleLookupField control in a web page that will run
So I want to use memoir document class and the ntheorem package with the
I'm working on a document-based application, and I want to use a document package
I want use jQuery in my project. I know the javascript_include_tag calls the jQuery
I want to use xpath to count occurances of certain node in xml document.
i want to use an List to store the title, path,... from Documents. I
I use Lucene.Net to index some documents. I want to show the user a

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.