Jump to content

How do I refresh two div simultaniously by one hyperlink click?


shamsuljewel

Recommended Posts

<html>
<head><title>fill 2 divs</title>
</head>
<body>
<form action="process.php" method="POST">
<a href="javascript:void(0);" onclick="updateDivs('div1','div2');">fill both divs</a>
<div id="div1"></div>
<div id="div2"></div>
</form>


<script language="JavaScript" type="text/javascript">
<!--
function updateDivs(div1name,div2name)
{
document.getElementById(div1name).innerHTML = "<hr>new content for div 1";
document.getElementById(div2name).innerHTML = "<hr>new content for div 2";
}

//-->
</script>

</body>
</html>

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.