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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T09:26:29+00:00 2026-06-07T09:26:29+00:00

The jQuery .wrap() function allows you to wrap any matched elements with some custom

  • 0

The jQuery .wrap() function allows you to wrap any matched elements with some custom HTML. However, the function doesn’t allow you to indicate where in the HTML you would like you matched element to be inserted — it is always inserted into the inner most element.

I need to wrap a div with a fairly basic table (in order to add rounded corners to it), but the only catch is that the table has two rows and I want my element to appear in the second row. For example:

$("#my-div").wrap('<table> \
                        <tr> \
                            <td class="corner-topleft" colspan="2"></td> \
                            <td class="corner-topright"></td> \
                        </tr> \
                        <tr> \
                            <td class="corner-bottomleft"></td> \
                            <td class="DIV-SHOULD-APPEAR-HERE"></td> \
                            <td class="corder-bottomright"></td> \
                        </tr> \
                    </table>');

If you try to execute this script, the wrap() function automatically places the matched element inside the first table cell (i.e. “corner-topleft”) as this is the “first inner most element”.

How can I use jQuery to wrap my element with the multi-row table above?

  • 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-07T09:26:31+00:00Added an answer on June 7, 2026 at 9:26 am

    You have to do this manually, like this:

    var div = $('#my-div');
    var table = $('<table> \
                            <tr> \
                                <td class="corner-topleft" colspan="2"></td> \
                                <td class="corner-topright"></td> \
                            </tr> \
                            <tr> \
                                <td class="corner-bottomleft"></td> \
                                <td class="DIV-SHOULD-APPEAR-HERE"></td> \
                                <td class="corder-bottomright"></td> \
                            </tr> \
                        </table>');
    table.find('.DIV-SHOULD-APPEAR-HERE').append(div.clone());
    // Have to clone the div, because of the possible 
    // circular reference in next line.
    div.replaceWith(table);
    

    I didn’t test it, but even if it doesn’t work, then you should understand the idea.

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

Sidebar

Related Questions

jQuery $(.window-container).click(function() { $(this).fadeOut(fast); }); HTML <div class=window-container> <div class=window-wrap> <div class=window-content> asdf </div>
Trying to wrap my head around the jQuery .not() function, and running into a
I would like to wrap the following code in a div with a jQuery
Is there a selector or function in JQuery that allows to select the current
I have a problem in IE7 using jQuery's .wrap function. I have a list
I create HTML snippet on-the-fly: $('<span/>').addClass(spanClass) Is there a jQuery way to wrap this
I'm building some objects that will trigger custom events, and I'm using jQuery's bind
In jQuery you can wrap all your code in $(function() { ... }); and
We allow users to write code which sometimes calls jQuery.ready(function(){..}) multiple times. It seems
I'm using the jQuery function wrap() , which returns the original object, not the

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.