You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
538 B
JavaScript

<html>
<head>
<script language="JavaScript">
function function1() {
document.all.myTableHeader.abbr = "Abbreviation";
}
</script>
</head>
<body onLoad="function1();">
<table width="428">
<th id="myTableHeader" colspan="2">This is the table heading </th>
<tr>
<td> http://html-css.happycodings.com/ </td>
<td> http://cplusplus.happycodings.com/ </td>
</tr>
<tr>
<td> http://javascript.happycodings.com/ </td>
<td> http://csharp.happycodings.com/ </td>
</tr>
</table>
</body>
</html>