Avatar of Whing Dela Cruz
Whing Dela CruzFlag for Anguilla

asked on 

Table header must be on top

Hi experts, I have made a table with header but when I added cells, the header will go on to the bottom.  Any help please! I wish the header will remain on top. Thank you!

<!Doctype Html>
<Html>
<style>
table,th,td {
  border : 1px solid black;
  border-collapse: collapse;
}
th,td {
  padding: 5px;
}
</style>
<body>
<form>
<div class="DivH9a">
  <table id="ReceiveTable" style="width:70%;" style="cursor: pointer">
  <tbody>
    <th style="width:10%; text-align:left">&nbsp; Del</th>
    <th style="width:10%; text-align:left">&nbsp; Qty</th>
    <th style="width:10%; text-align:left">&nbsp; U.m</th>
    <th style="width:50%; text-align:left">&nbsp; Description</th>
    <th style="width:10%">&nbsp; U.p</th>
    <th style="width:10%">&nbsp; Total</th>
  </tbody>
  </table>
</div>

</form>
<button onclick="return addTableFunction()">Add</button>
<script>
function addTableFunction()
{
  var table = document.getElementById("ReceiveTable");
  var row = table.insertRow(0);
 
  var cell1 = row.insertCell(0);
  var cell2 = row.insertCell(1);
  var cell3 = row.insertCell(2);
  var cell4 = row.insertCell(3);
  var cell5 = row.insertCell(4);
  var cell6 = row.insertCell(5);
  var cell7 = row.insertCell(6);
 
  cell1.innerHTML = '<button>Del</button>';
  cell2.innerHTML = '<input type="text">';
  cell3.innerHTML = "Apple";
  cell4.innerHTML = "Banana";
  cell5.innerHTML = "100.00"
  cell6.innerHTML = "Milk";
  
  cell1.style.width="10%";  
  cell2.style.width="10%";  
  cell3.style.width="10%";  
  cell4.style.width="50%";  
  cell5.style.width="10%";  
  cell6.style.width="10%";  
}
</script>
</body>
</Html>

Open in new window

ASPHTMLJavaScript

Avatar of undefined
Last Comment
Whing Dela Cruz
ASKER CERTIFIED SOLUTION
Avatar of Michel Plungjan
Michel Plungjan
Flag of Denmark image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
Avatar of Whing Dela Cruz

ASKER

Its working very well sir, thank you very much. More power to you and God Bless!
JavaScript
JavaScript

JavaScript is a dynamic, object-based language commonly used for client-side scripting in web browsers. Recently, server side JavaScript frameworks have also emerged. JavaScript runs on nearly every operating system and in almost every mainstream web browser.

127K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo