How to use jQuery to append only two tds’ in a single tr ..
I have a table .. I want to max how many tds per row.. something like this
if($("td").length) == 0){ // get the count of existing tds
$("table").append("<tr>");
}
$("table").append("<td>Something</td>");
if($("td").length) == 2){ // if it hit two tds' in this tr then close the tag
$("table").append("</tr>");
} // this is not a valid example, just trying to deliver my point
it’s not a loop, it appends on click, so let’s say I clicked 5 times, I should get this
<tr>
<td>Someting</td>
<td>Someting</td>
</tr>
<tr>
<td>Someting</td>
<td>Someting</td>
</tr>
<tr>
<td>Someting</td>
</tr>
Let’s try this:
http://jsfiddle.net/5yLrE/