Hello,
odd question maybe; I wonder if it's possible write the code for a page like this:
So I want hide a part of html code; when I push on the "input" I want the table appear on the page (without delete anything that was visible before on the page).
Is it possible?
odd question maybe; I wonder if it's possible write the code for a page like this:
Code:
<script>
function jsfunc() {
ShowTable();
}
</script>
<input type="text" onClick="jsfunc()" />
//hidden table:
<table>
<tr>
<td> Hello </td>
<td> Hello </td>
</tr>
<tr>
<td> Hello </td>
<td> Hello </td>
</tr>
</table>
Is it possible?
Comment