Suppose i have a HTML file like this....
Now my page1 is like this ..
Now my page2 is like this ...
Now page3,page4 contain the view part .......
If i want to determine the height and width of any frame ..then how could i get that?
It is possible what i think ..that is by back calculation ..means using the percentage value of each frame and having the top window width and height, we can do it ....
But is there any direct API by which i can get the height and width easily of any frame ?
Any help would be appreciated .... :)
Code:
<frameset rows="10%,*"> <frame name="frame1" src="page1"/> <frame name="frame2" src="page2"/> </frameset>
Code:
<frameset cols="50%,*"> <frame name="frame1" src="page3"/> <frame name="frame2" src="page4"/> </frameset>
Code:
<frameset cols="50%,*"> <frame name="frame1" src="page5"/> <frame name="frame2" src="page6"/> </frameset>
If i want to determine the height and width of any frame ..then how could i get that?
It is possible what i think ..that is by back calculation ..means using the percentage value of each frame and having the top window width and height, we can do it ....
But is there any direct API by which i can get the height and width easily of any frame ?
Any help would be appreciated .... :)
Comment