I am working on a liquid design project and was hoping to use the onResize event to trigger the resizing of text and images.
However, it seems that the onResize triggers 3 events instead of 1. Any Ideas?
Clive
However, it seems that the onResize triggers 3 events instead of 1. Any Ideas?
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml"[/URL] xml:lang="en" lang="en">
<head><title>onResize problem<title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head><body onResize="alert('resized')">
</body></html>
Clive