How to reload one of multiple iframes on the page through javascript -
i have set of menus , multiple iframes on page (e.g. top / center / bottom).
the top , bottom iframes tend stay same content of time. want reload center iframe when clicking on different menus.
how via javascript when clicking on different menus?
thanks lot!
window.top.frames.center.src = "http://google.com"; or grab iframe id , update source
document.getelementbyid("iframecenter").src = "http://google.com"
Comments
Post a Comment