JavaScript DHTML/Event onMethod/onLayoutComplete — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 10:02, 26 мая 2010
"onLayoutComplete" Example
<html><head>
<script language="JavaScript">
function function1() {
window.print();
}
</script>
</head>
<body>
<p>Some body content to print</p>
<input type="button"
value="Print"
onclick="function1()"
onlayoutcomplete="alert("The preview layout process is finished")">
</body>
</html>