For mine frameset page, whenever anyone click on any link within any frame, want that frameset (i.e. all the frames) to be refreshed or reloaded. Need help to about simple way to do this? Regards, Realistic
you want to refresh all the frames of that page on click? or just the frame inside which click is made has to be refreshed? more over, this question belongs to JavaScript section, but you can use something similar to following might do the trick.. for(var i = 0; i < document.frames.length; i++) { document.frames[i].location.reload(); } Code (markup):