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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T07:12:41+00:00 2026-05-31T07:12:41+00:00

How would you copy multiple rows of data like this <tr><td>cell 1</td><td>cell 2</td></tr> <tr><td>cell

  • 0

How would you copy multiple rows of data like this <tr><td>cell 1</td><td>cell 2</td></tr> <tr><td>cell 3</td></td>cell 4</td></tr> into user’s clipboard, ready to be pasted in Excel (one <td> pair will go to one cell in Excel)

I have something like this in mind:

$('#copy').click(function(){
   var data = $('datatable tr:visible').text();
   alert("you have copied these data: " + data + "now you can paste them in Excel");
});

Nothing in data variable in the alert box. Pretty much stuck here..

  • 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-31T07:12:42+00:00Added an answer on May 31, 2026 at 7:12 am

    If you want to paste the data in Excel, you’ll probably need each row in a different line, each column separated by tabs. Example:

    var rows = []
    $('datatable tr:visible').each(function() {
        var columns = [];
        $(this).children("td").each(function() {
            columns.push($(this).text());
        });
        rows.push(columns.join("\t");
    });
    var data = rows.join("\n");
    

    Working example at jsFiddle (adapted from OP code)

    As for copying to clipboad, see this question for more info.

    Update: Copying from browser to clipboard is a complicated and potentially insecure operation, and AFAIK does not work consistently between browsers and operating systems. Maybe it’s better to just drop the text in a textarea, selected, and request the user to Ctrl+C it. But it’s up to you.

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

Sidebar

Related Questions

I would like to copy an array of pixel data (colors) into a texture.
I would like to copy a macro from one Excel workbook to another using
I would like copy just file.xml without folder structure using overlays like this: <overlays>
I would like to copy to clipboard what a Control of my WPF app
I would like to copy one object to another object, and the fields with
need help on copying while updating multiple rows of data from one table to
I would like to know how I define multiple containers in Maven, one for
I would like to copy stdout and stderr of my Perl script to a
I would like to copy whole directory to another directory. xcopy and My.Computer.FileSystem.CopyDirectory only
I have a Visual Studio 2008 C++ project where I would like to copy

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.