0

I have rows like this,

<tr onclick="LoadFruit(19210)" data-clisch="12-178" data-catid="88" data-rid="19210" data-start="02/03/2012 00:00:00" data-rstatus="Overdue" data-status="cbOpeks" class="ref" style="display: table-row;">
    <td class="rtddef hov">
        <div style="float:left">Fruitish Fruit 1</div>
        <div class="msb sub"><span style="float:right; padding-right: 5px;">Tmm itee</span>

            <div style="clear:both;"></div> <span style="float:left">Multi Dription 1</span><span style="float:right; padding-right: 5px; color:red">27 M015</span>

        </div>
    </td>
    <td class="rlicd">
        <div title="Weight = 2  Quality = 3">
            <img src="../_layouts/15/images/eControls.WebPart.Details/riskimporange.png" alt="Weight = 2  Quality = 3">
        </div>
    </td>
</tr>

I am trying to select all rows of the table and clone them to another table, my goal is to show them, but maybe I need to change ID, however I am having isssue creating select query,

I can do,

$("#table tr td[1] div") ... not sure what's next

I may use this for cloning How to Copy Table Row with clone in jquery and create new Unique Ids for the controls but this is coming after i make a select statement.

Community
  • 1
  • 1
Mathematics
  • 7,314
  • 25
  • 77
  • 152

1 Answers1

1

You can simply select elements by title's attribute value with the following code

$("div[title='Weight = 2  Quality = 3']")
jmgross
  • 2,306
  • 1
  • 20
  • 24