Wednesday, 28 January 2015

Write a program to take input parameters and data for a table and display the desired table.

<!--Write a program to take input parameters and data for a table and display the desired table.-->

<html>
<head>
<title>Table</title>
<script type=text/javascript>

function createtable()
 {
  var x = document.createElement("TABLE");
  var no_of_rows=parseInt(window.prompt("Enter the no. of rows"));
  var no_of_cols=parseInt(window.prompt("Enter the no. of column"));
  x.style.border = 1;
  x.style.borderStyle = "solid";
  for(i=0;i<no_of_rows;i++)
  {
var new_row = document.createElement("tr");
x.appendChild(new_row);
for(j=0;j<no_of_cols;j++)
{
var new_col = new_row.insertCell(j);
var input = window.prompt("Enter value for cell (" + i + "," + j + "):");
new_col.innerHTML = input;
new_col.style.border = 1;
new_col.style.borderStyle = "solid";
new_row.appendChild(new_col);
}

   }

   document.body.appendChild(x);

}

</script>
</head>
<body onload="createtable();">
</body>
</html>

No comments:

Post a Comment

Read contacts in iOS using Swift with error handling

Just copy and paste the below code Pre-step before pasting the below code Add below line in AppDelegate.swift file below import statement ...