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

Ask A Question

Stats

  • Questions 398k
  • Answers 398k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer In addition to the books suggested by Alex and nevan… May 15, 2026 at 3:30 am
  • Editorial Team
    Editorial Team added an answer It does not need to be installed in a domain.… May 15, 2026 at 3:30 am
  • Editorial Team
    Editorial Team added an answer Yahoo has a zip + 4 in thier API, limit… May 15, 2026 at 3:29 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.