Is there a way to reload an entire frameset using Javascript onload() event?
function logout()
{
...
// reload entire frame
top.location.reload();
}
<body onload="logout()">
This cause all frames to reload but the URL of the frame where this was called didn't changed to the URL specified in the framset.