How to create a td object jquery

80 Views Asked by At

I'm searching a way to create a td by object methode and not by creating a html element that tranform in object

So I'm searching a way to make some thing like my_td = $('td'); my_td = new $('td');

Actualy when I do this all my td are modified by that one what I'm trying to do:

tab += '<tr>';
tab += '<td>'+Id+'</td>';
tab += '</tr>';

what I wouldlike to do is some thing like

tab.('tr').('td').text(ID);

Is there anyway? Thanks

1

There are 1 best solutions below

2
On

Try using a self-closed element like below

https://api.jquery.com/jQuery/#jQuery2

var my_td = $('<td/>');

console.log(my_td.get(0))
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>