Jump to content

Html table refresh


krmreddy

Recommended Posts

try out this example:

 

<script language="javascript">

function update1()
{
var cb1 = document.form1.checkbox1.checked;
if (cb1 == true)
{
  document.getElementById('info1').innerHTML="Now Some Different Content";
}
else if (cb1 != true)
{
  document.getElementById('info1').innerHTML="Page Loaded Content";
}
}

</script>

<table>
<td id="info1">
Page Loaded Content
</td>
</table>

<form name="form1">
<input type="checkbox" name="checkbox1" onclick="update1()">
</form>

Link to comment
https://forums.phpfreaks.com/topic/82735-html-table-refresh/#findComment-420923
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.