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? Link to comment https://forums.phpfreaks.com/topic/78752-how-do-i-refresh-two-div-simultaniously-by-one-hyperlink-click/ 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. Link to comment https://forums.phpfreaks.com/topic/78752-how-do-i-refresh-two-div-simultaniously-by-one-hyperlink-click/#findComment-398605 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> Link to comment https://forums.phpfreaks.com/topic/78752-how-do-i-refresh-two-div-simultaniously-by-one-hyperlink-click/#findComment-398652 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.