shamsuljewel Posted November 25, 2007 Share Posted November 25, 2007 Hi there, I need two different div in one page will be refreshed when I clicked on hyperlinked. I don't understand how will I do it...any idea? Quote Link to comment Share on other sites More sharing options...
sKunKbad Posted November 25, 2007 Share Posted November 25, 2007 use javascript's split function and apply the changes to each div using the array made from the split. Quote Link to comment Share on other sites More sharing options...
BenInBlack Posted November 25, 2007 Share Posted November 25, 2007 <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> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.