hey, can i have scripts codes etc to make a page frame rezise on hover over the top frame?
i dont think it is possible but it will be great if it is. its for my site and you can see the frame in action without the script here : MY SITE!
Printable View
hey, can i have scripts codes etc to make a page frame rezise on hover over the top frame?
i dont think it is possible but it will be great if it is. its for my site and you can see the frame in action without the script here : MY SITE!
Here's an example of a frameset being resized. I'm not sure if that's really what you want, though. Worked for me in Firefox.
frameset.html
test.html (click the button in there to resize the frame)Code:<html>
<head>
<script>
function resizeit(){
document.getElementById('frameset1').rows='400,*'
}
</script>
</head>
<frameset id="frameset1" framespacing="20" frameborder="10" border="20" rows="200,*">
<frame id="frame1" target="target1" src="test.html">
<frame id="frame2" target="target2" src="whatever.html">
</frameset>
</html>
Code:<html><body>
<script>
</script>
<input type="button" value="click" onclick="top.resizeit()">
</body></html>