>> onresize works but onresizeend does not seem to work either on div's or[color=blue][color=green]
>> on body.
>>
>> Using IE 6[/color]
>
> <URL:
> http://msdn.microsoft.com/library/de...nresizeend.asp[color=green]
> >[/color]
>
> Says it does.
> What behavior are you getting? And, a sample code that shows it?[/color]
----------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
function drawAll()
{
canvas.style.ba ckgroundColor = 0;
}
//-->
</script>
</body>
</html>
--------------------
Its a _oneshot_ but it demonstrates the problem, replace 'onResizeEnd' with
'onResize' and it works fine.
If it wont work which it should, drawing the chart which is resizable takes
a couple of seconds plus, so I really need the onResizeEnd or an equivalent,
the only thing I can think of doing is use a timer which is constantly reset
by onResize and then it times out after the resize process and draws the
chart.
Comment