August 1999
Intermediate to advanced
1488 pages
72h 53m
English
onResize="command"
The onResize frame event handler is used to specify when a frame has been resized.
Listing 7.280 shows how you would use the onResize event handler to check for when a frame is being resized.
<html>
<title> Example of onResize event handler of the Frame object</title>
<frameset rows="80, *">
<frame src=top.html name=top >
<frame src=bottom.html name=bottom onResize='alert("You are resizing the bottom
frame")'>
</frameset>
</html>
|
Read now
Unlock full access