Hi All
My" Frame .html " page is divided in to header and client frames and in my client frame i am loading "client.html" page, and this client .html is divided in to multiple frames,
when i click any on link in the client.html,it should load the url of the link in the client frame, ir respective of the frame in which the link resides in the client.html,
hence i used
top.frames[1].location.href=link_url;
this is not working
But if i use
top.frames["framename"]=link_url
it works fine
i don want to use the name, can any one help me please?