Using JavaScript to load multiple frames
Using javascript we can load and change the content of more than one frame at a time.
Function to load multiple frames at once:
function(multipleframes)
{
parent.frame1.location = ‘5.htm’
parent.frame2.location = ‘6.htm’
parent.frame3.location = ‘7.htm’
}
