Это HTML-часть:
</head>
<body>
<div class = "container">
<h1>Your custom BMI table </h1>
<p>This table shows your current height and weight, plus or minus up to ten pounds,
and the corresponding BMI calculations. It also indicates if a BMI is a categorized as
underweight, healthy, overweight, or obese.</p>
<p>Your current weight is indicated in bold text.</p>
<p></p>
<table id="output" class="table-bordered">
<tr>
<th id = "table-height">Height (inches)</th>
<th id = "table-weight">Weight (lbs)</th>
<th id = "table-bmi">BMI</th>
<th id = "table-category">Category</th>
</tr>
</table>
</div>
Я хочу, чтобы вес проходил под заголовком веса в ячейках, но я не могу понять, что происходит
var i = 0;
for (var i = weight - 10; i <= weight + 10; i++) {
console.log(i);
var tableWeight = document.getElementById('th');
$(tableWeight).find('tbody').append( "<tr><td>" + i + "</td></tr>" );
}
Любая помощьочень ценится.