I am using this method to fresh other frame in the same window using java script
function updateTree(val) {
if (val == 1) {
parent.frames['left'].location.reload();
} else if(val == 2) {
parent.frames['bottom'].location.reload();
}
}
its working in both IE and Mozilla but is not working in Chrome Browser(3.0.195.38).
Any help appreciated.